summary {dimensio} | R Documentation |
Object Summaries
Description
Provides a summary of the results of a multivariate data analysis.
Usage
## S4 method for signature 'MultivariateSummary'
as.data.frame(x, row.names = NULL, optional = FALSE, ...)
## S4 method for signature 'CA'
summary(
object,
...,
axes = c(1, 2),
margin = 1,
active = TRUE,
sup = TRUE,
rank = NULL
)
## S4 method for signature 'PCA'
summary(
object,
...,
axes = c(1, 2),
margin = 1,
active = TRUE,
sup = TRUE,
rank = NULL
)
Arguments
x |
A |
row.names |
A |
optional |
A |
... |
Currently not used. |
object |
|
axes |
A length-two |
margin |
A length-one |
active |
A |
sup |
A |
rank |
An |
Author(s)
N. Frerebeau
See Also
Other summary:
describe()
,
tidy()
Examples
## Data from Lebart et al. 2006, p. 170-172
data("colours")
## Compute correspondence analysis
X <- ca(colours)
## Rows summary
summary(X, margin = 1)
## Columns summary
summary(X, margin = 2)