R Programming/Factor Analysis
From Wikibooks, the open-content textbooks collection
Factor analysis is a set of technique to reduce the dimensionality of the data. The goal is to describe the dataset with a smaller number of variables (ie underlying factors).
Factor analysis is mainly used in
- marketing.
- French sociology (Bourdieu and co)
- psychology
It is also known as data mining, multivariate data analysis or exploratory data analysis.
[edit] Principal Component Analysis
- prcomp() in the stats package
- princomp() in the stats package
- PCA deals with continuous variables
[edit] Correspondence Analysis
- corresp in the MASS package
- Michael Greenacre's "ca" package. See the Journal of Statistical Software paper
- Correspondence Analysis and Related Network
- Quick-R's page
Correspondence analysis is a tool for analysing contingency tables.