facto_ca {booklet} | R Documentation |
Perform CA with FactoMineR's style
Description
Return CA results with FactoMineR's style
Usage
facto_ca(X, ncp = 5, row_sup = NULL, col_sup = NULL, weighted_row = NULL)
Arguments
X |
a data frame with n rows (individuals) and p columns (numeric variables) |
ncp |
an integer, the number of components to keep (value set by default) |
row_sup |
a vector indicating the indexes of the supplementary rows |
col_sup |
a vector indicating the indexes of the supplementary cols |
weighted_row |
row weights |
Value
A list containing results of FactoMineR's correspondence analysis (CA).
Examples
library(booklet)
res <- facto_ca(X = mtcars[, c(2, 8:11)], ncp = 2)
[Package booklet version 1.0.0 Index]