ComeçarComece de graça

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

Ver curso

Instruções do exercício

  • Using the pca.state object that contains the PCs of the state.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(___) 
Editar e executar o código