Description Usage Arguments Details Author(s) References See Also Examples
Plotting functions for PCA: for scores, loadings, scores and loadings simultaneously (a biplot), and variances (a screeplot, where the log of the explained variance is plotted for each PC).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## S3 method for class 'PCA'
scoreplot(object, pc = c(1, 2), pcscores = scores(object),
show.names = FALSE, xlab, ylab, xlim, ylim, ...)
## S3 method for class 'PCA'
loadingplot(object, pc = c(1, 2), pcloadings = loadings(object),
scalefactor = 1, add = FALSE, show.names = FALSE,
xlab, ylab, xlim, ylim, col = "blue", min.length =
0.01, varnames = NULL, ...)
## S3 method for class 'PCA'
biplot(x, pc = c(1,2),
show.names = c("none", "scores", "loadings", "both"),
score.col = 1, loading.col = "blue",
min.length = .01, varnames = NULL, ...)
screeplot(object, type = c("scree", "percentage"), npc, ...)
|
x, object |
an object of class "PCA" (see below). |
pc |
which PCs to show. |
pcscores |
matrix of scores, by default the scores of the PCA model object. |
show.names |
show names rather than plotting
symbols. For |
xlab, ylab, xlim, ylim, col |
graphical parameters of the plot. |
pcloadings |
matrix of loadings, by default the loadings of the PCA model object. |
scalefactor |
scaling factor for the loadings; used internally, when
the |
add |
logical, whether to add to the existing plot (again, useful
when |
npc |
how many PCs to show in the scree plot (starting from 1). |
type |
show a real screeplot ( |
score.col, loading.col |
colours of the scores and loadings in a biplot. |
min.length |
minimal length of loading vectors to be plotted by arrows. Vectors that are too short lead to warning messages, are not interesting, and only clutter the graphic. |
varnames |
alternative vector of variable names. |
... |
Graphical arguments passed on to lower-level plotting functions. |
Score plots and loading plots show the amount of explained variance at the axis labels only when PCA has been performed at mean-centered data.
Ron Wehrens
R. Wehrens. "Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and Life Sciences". Springer, Heidelberg, 2011.
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.