R Programming/Factor Analysis

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

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

Correspondence analysis is a tool for analysing contingency tables.

[edit] Multiple Correspondence Analysis

Previous: Non Linear Panel Data Index Next: Network Analysis