Is it Necessary to De-Mean my Data before Applying PCA, or does pca(X) do that Automatically?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nikitas Provatakis
am 15 Nov. 2018
Kommentiert: Nikitas Provatakis
am 19 Nov. 2018
I am aware that a first step in performing PCA for dimensionality reduction is de-meaning the data.
I have performed PCA after de-meaning manually with X=X-mean(X) and compared with plainly applying [COEFF,score,latent,~,explained]=pca(X) on my data.
By inspecting the eigenvalues and the percentage of variability described by each PC on both cases (i.e. latent and explained in the above case), I can see that I get two different results. Is manual de-meaning doing too much in this case?
0 Kommentare
Akzeptierte Antwort
the cyclist
am 15 Nov. 2018
Bearbeitet: the cyclist
am 15 Nov. 2018
MATLAB's pca functions definitely de-means. It should make no meaningful difference if you de-mean ahead.
Are you sure you are de-meaning along the correct dimension? You should only de-mean along dimension 1 of your input.
Are you sure you're getting different output, beyond perhaps some floating-point differences (on the order of 1e-15) smaller than the results?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dimensionality Reduction and Feature Extraction finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!