getParam {FactoInvestigate} | R Documentation |
Factorial parameters
Description
Get all the factorial object parameters
Usage
getParam(res)
Arguments
res |
an object of class PCA, CA or MCA. |
Value
data |
the dataset. |
ind |
the number of individuals. |
var |
the number of variables. |
row |
the number of rows (CA). |
col |
the number of columns (CA). |
ind.sup |
the number of supplementary individuals. |
quanti.sup |
the number of quantitative supplementary variables. |
quali.sup |
the number of qualitative supplementary variables. |
row.sup |
the number of supplementary rows (CA). |
col.sup |
the number of supplementary columns (CA). |
row.w |
the weights of each row. |
col.w |
the weights of each columns. |
scale |
a boolean indicating if the variables are scaled or not. |
ncp.mod |
the number of component kept in the analysis object. |
modalites |
the list of factors for each qualitative variables. |
Author(s)
Simon Thuleau and Francois Husson
See Also
Examples
## Not run:
require(FactoMineR)
data(decathlon)
res.pca = PCA(decathlon, quanti.sup = c(11:12), quali.sup = c(13), graph = FALSE)
getParam(res.pca)
## End(Not run)
[Package FactoInvestigate version 1.9 Index]