Is there a way to plot original set of data onto biplot?

2 次查看(过去 30 天)
I want to plot all of my original data as a scatter plot onto the biplot created by PCA.

采纳的回答

Peter Perkins
Peter Perkins 2014-8-11
Michelle, the whole point of PCA is to create a new coordinate system. Plotting the original data in that coordinate system doesn't make sense. If you've done PCA, you must have the scores for your original data -- the scores are the original data transformed into the new coordinate system. Use BIPLOT to plot those - there's an optional parameter to do that.
Hope this helps.

更多回答(1 个)

dpb
dpb 2014-8-7
编辑:dpb 2014-8-8
biplot(...
hold on
scatter(gca,x,y);
should get you started.

类别

Help CenterFile Exchange 中查找有关 Dimensionality Reduction and Feature Extraction 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by