dimtypicality {GDAtools} | R Documentation |
Typicality tests for supplementary variables
Description
Computes typicality tests for a list of supplementary variables of a MCA.
Usage
dimtypicality(resmca, vars, dim = c(1,2), max.pval = 1)
Arguments
resmca |
object of class |
vars |
a data frame of supplementary variables |
dim |
the axes for which typicality tests are computed. Default is c(1,2) |
max.pval |
only categories with a p-value lower or equal to |
Value
Returns a list of data frames giving the typicality test statistics and p-values of the supplementary categories for the different axes.
Author(s)
Nicolas Robette
References
Le Roux B. and Rouanet H., Multiple Correspondence Analysis, SAGE, Series: Quantitative Applications in the Social Sciences, Volume 163, CA:Thousand Oaks (2010).
Le Roux B. and Rouanet H., Geometric Data Analysis: From Correspondence Analysis to Stuctured Data Analysis, Kluwer Academic Publishers, Dordrecht (June 2004).
See Also
Examples
# specific MCA on Music example data set
data(Music)
junk <- c("FrenchPop.NA", "Rap.NA", "Rock.NA", "Jazz.NA", "Classical.NA")
mca <- speMCA(Music[,1:5], excl = junk)
# typicality tests for gender and age
dimtypicality(mca, Music[, c("Gender", "Age")])