Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I've read that Mahalanobis distance is as effective as the Euclidean distance when comparing 2 projected feature vectors in classification using a LDA classifier.

I was wondering if this statement were true?

It would be nice if someone could comment on this.

I'm working on projecting a 36 dimensional feature vector to a 1d feature vector using a 2 class LDA classifier and comparing projected feature vectors.

share|improve this question
1  
the latter is just a particular case of the former, so the statement is true. – user603 Apr 17 '12 at 12:27

2 Answers

Given that the covariance matrix S = I, the identity matrix, the Mahalanobis distance is equal to the normalised euclidean distance - which is a scale invariant Euclidean distance.

share|improve this answer

For a multivariate normal distribution the contours of constant probability fall on an ellipsoid. LDA is most often used in the context of multivariate normal features. A contour of constant probability is also the set of points in the sapce of the multivariate normal distribution that have the same Mahalanobis distance. So the greater the Mahalanobis distance is the lower the probability density is. The interior of an ellipsoid with boundary given by a fixed Mahalanobis distance. is the central region that best describes where most of the data will lie and outside it is like being in the tail of a univariate distribution. This is the sense that effective can be used in the description you gave.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.