what is the COEFF,SCORE,latent,tsquare when perform PCA
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am new to use PCA, I have gone through, but still unable to capture what is the mere meaning(physical significance) of these terms:COEFF,SCORE,latent,tsquar (how they are important).
Many thanks in advance,
0 comentarios
Respuestas (1)
KSSV
el 15 de Jul. de 2017
I suggest you to read first what PCA does and how it is done. Then you will get clear picture. Also know that MATLAB documentation is vast and the required information is Crystal clear there.
Let x be your input.
coef-are the principal components aka eigenvectors of covariance matrix of x arranged in descending order.
score-it is the input x rotated to new basis of principal components.
latent-these are eigevalues of covariance matrix of x arranged in descending order.
PCA is used for dimensional reduction. Now instead of using the whole x , you can use certain columns of score for analysis.
1 comentario
nkwt nkwt
el 23 de Mzo. de 2018
Editada: nkwt nkwt
el 23 de Mzo. de 2018
Thank you. It is what I have been looking for too. Wondering why the MATLAB doesn't describe these variables in relation to the eigen components?
I understand an approximation matrix of the original features x can be reconstructed using score * coeff' (using the selected high rank features). But, is there a way to refer to which features is mapped to which reconstructed Feature, as these are already sorted by pca?
Ver también
Categorías
Más información sobre Dimensionality Reduction and Feature Extraction en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!