
Screeplot for Principal Components
ggscreeplot(pcobj, type = c("pev", "cev"))
an object returned by prcomp() or princomp()
the type of scree plot. 'pev' corresponds proportion of explained variance, i.e. the eigenvalues divided by the trace. 'cev' corresponds to the cumulative proportion of explained variance, i.e. the partial sum of the first k eigenvalues divided by the trace.
# NOT RUN {
data(wine)
wine.pca <- prcomp(wine, scale. = TRUE)
print(ggscreeplot(wine.pca))
# }
Run the code above in your browser using DataLab