LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Multivariate Probability Distributions in R

Kurs anzeigen

Anleitung zur Übung

  • 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.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Variance explained by each PC
pca.var <- ___$sdev^2  

# Proportion of variance explained by each PC
pca.pvar <- pca.var/sum(___) 
Code bearbeiten und ausführen