FAMDshiny {Factoshiny} | R Documentation |
Factor Analysis for Mixed Data with Factoshiny
Description
Performs Factor Analysis for Mixed Data (FAMD) with supplementary individuals, supplementary quantitative variables and supplementary categorical variables on a Shiny application.
Allows to change FAMD parameters and graphical parmeters.
Graphics can be downloaded in png, jpg and pdf.
Usage
FAMDshiny(X)
Arguments
X |
a data frame with n rows (individuals) and p columns (numeric variables and categorical variables), or a FAMDshiny result or a FAMD result |
Value
Returns several tabs:
Graphs |
a tab containing the individuals factor map, the variables factor (quantitative and categorical) map and the correlation circle. |
Values |
a tab containing the summary of the FAMD performed, the eigenvalues, the results for the variables, the results for the individuals, the results for the supplementary variables and the results for the supplementary individuals. |
Summary of dataset |
a tab containing the summary of the dataset and a boxplot and histogram for quantitative variables. |
Data |
a tab containing the dataset with a nice display. |
The left part of the application allows to change all the elements of the FAMDA and the graphs (axes,variables,colors...)
Author(s)
Pauline Vaissie, Astrid Monge, Francois Husson paulinevaissie@gmail.com
See Also
Examples
## Not run:
require(FactoMineR)
data(geomorphology)
# FAMD with Factoshiny:
res.shiny=FAMDshiny(geomorphology)
# Find your app the way you left it (by clicking on the "Quit the app" button)
res.shiny2=FAMDshiny(res.shiny)
## End(Not run)