Vizualizace a interpretace výsledků PCA

Unsupervised Learning in R

Hank Roark

Senior Data Scientist at Boeing

Biplot

biplot

Unsupervised Learning in R

Scree plot

Scree plot

Unsupervised Learning in R

Biploty v R

# Creating a biplot
pr.iris <- prcomp(x = iris[-5], 
                  scale = FALSE, 
                  center = TRUE)
biplot(pr.iris)

biplot

Unsupervised Learning in R

Scree ploty v R

# Getting proportion of variance for a scree plot
pr.var <- pr.iris$sdev^2
pve <- pr.var / sum(pr.var)

# Plot variance explained for each principal component plot(pve, xlab = "Principal Component", ylab = "Proportion of Variance Explained", ylim = c(0, 1), type = "b")
Unsupervised Learning in R

Scree plot

Unsupervised Learning in R

Pojďme procvičovat!

Unsupervised Learning in R

Preparing Video For Download...