Is there a package in R that can do this plot on LDA data
graph plot: 
original question: How does linear discriminant analysis reduce the dimensions?
Is there a package in R that can do this plot on LDA data
graph plot: 
original question: How does linear discriminant analysis reduce the dimensions?
r) I may say: if there is even no ready program, it can be written. The plot is actually a scatterplot (with spikes to group centroids) with 5 groups: 3 classes + 2 discriminant scores clouds which are straight chains when drawn in the space defined by original variables V1, V2. So, the only trick necessary to plot them is to compute coordinates of the discr. scores (which you get from LDA) onto V1, V2. The coordinate is thescore * corresponding eigenvector element; eigenvectors of the LDA. – ttnphns Oct 30 '13 at 09:01