summary.mvPCA | R Documentation |
Summary method for an object of class mvPCA.
## S3 method for class 'mvPCA'
summary(object, loadings = FALSE, cutoff = 0.1, ...)
## S3 method for class 'summary.mvPCA'
print(x, digits = 3, loadings = x$print.loadings,
cutoff = x$cutoff, ...)
object |
an object to type |
loadings |
logical. Should the loadings be returned. |
cutoff |
numeric. Loadings below this cutoff in absolute value are shown as blank in the output. |
x |
an object of class "summary.mvPCA". |
digits |
the number of significant digits to be used in listing of loadings. |
... |
arguments to be passed to or from other methods. |
'object' with additional components 'cutoff' and 'print.loadings'.
Klaus Nordhausen
mvPCA
data(iris)
IRIS <- iris[,1:4]
iris.pca <- mvPCA(IRIS, "sign", "i")
summary(iris.pca, loadings = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.