Principle Component Analysis
If where and , and let , then where i the ith principal component and
Factor Analysis
if where , then and the common factors f are independent to .
For the two methods, the proportion of variance of explained is called the community of . The summation of community is not equal to 1 for Factor Analysis, while it is always equal to 1 Principle Component Analysis.
We can use
PROC FACTOR
and a simple SASHELP.CLASS
dataset as example. The only difference between them is the priors
option. In Factor Analysis, starting from one common factor, the commonality is greater than 1, which is difficult to explain. ******factor analysis***********************************;
proc factor data=sashelp.class priors=smc plots=scree ;
run;
******princinple component analysis*********************;
proc factor data=sashelp.class priors=one plots=scree;
run;
As the result, Principle Component Analysis is easier interpreted and running faster. That is why PCA is much more popular than FA in reality.