Calculating the proportion of variation explained
The proportion of variation and the cumulative proportion of variation explained by the leading PCs are widely used to determine the importance of the PCs and to decide the number of components to retain.
Este exercício faz parte do curso
Multivariate Probability Distributions in R
Instruções do exercício
- Using the
pca.state
object that contains the PCs of thestate.x77
data, calculate the variance explained by each principal component. - Calculate the proportion of variance explained by each principal component.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Variance explained by each PC
pca.var <- ___$sdev^2
# Proportion of variance explained by each PC
pca.pvar <- pca.var/sum(___)