Plot all the components of a PCA

pca, plot, r

Solution

This might work:

pc.cr <- princomp(USArrests, cor = TRUE)
pairs(pc.cr$loadings, col=c("red", "green", "blue"))

Problem

I'd like to know how can we do to plot the individual in more than the first and second component, like this :

Original source