Visualizing and interpreting PCA results

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

Biplots in R

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

biplot

Unsupervised Learning in R

Scree plots 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

Let's practice!

Unsupervised Learning in R

Preparing Video For Download...