Linear/Normal Discriminant/Discriminative Analysis (LDA/NDA)
  • LDA is both a classifier and a dimensionality reduction technique
  • LDA is a generalization of Fisher’s Linear Discriminant, a method used to find a linear combination of features that separates two or more classes of objects or events. The resulting combination may be used as a linear classifier, or, more commonly, for dimensionality reduction before later classification
  • LDA is closely related to Analysis of Variance (ANOVA) and regression analysis, which also attempt to express one dependent variable as a linear combination of other features or measurements. However, ANOVA uses categorical independent variables and a continuous dependent variable, whereas discriminant analysis has continuous independent variables and a categorical dependent variable (i.e. the class label)
  • LDA is also closely related to Principal Component Analysis (PCA) and factor analysis in that they both look for linear combinations of variables which best explain the data:
    • instead of finding axes of most variation like in PCA, LDA focuses on maximizing the separability among the known categories
    • factor analysis builds the feature combinations based on differences rather than similarities
  • LDA works when the measurements made on independent variables for each observation are continuous quantities. When dealing with categorical independent variables, the equivalent technique is discriminant correspondence analysis

LDA - Interpretations

LDA can be interpreted from two perspectives:

TODO

LDA - Subpages

LDA - Resources