PCA-resultaten visualiseren en interpreteren

Unsupervised learning in R

Hank Roark

Senior Data Scientist at Boeing

Biplot

biplot

Unsupervised learning in R

Screeplot

scree-plot

Unsupervised learning in R

Biplots in R

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

biplot

Unsupervised learning in R

Screeplots in 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

Laten we oefenen!

Unsupervised learning in R

Preparing Video For Download...