Dear Statalisters,
I started working with factor analyses these days and I was wondering what Stata is actually doing when one uses the option pcf (principal component factors) of the -factor- command.
At first I thought this is just another way of conducting principal component analysis as in the -pca- command, but the results are quite different (see code below).
Actually, the exact same question was raised earlier on statalist (see https://www.stata.com/statalist/arch.../msg00321.html ) and Amadou pointed towards the text book by Harman (1976), where principal component factoring is apparently described as a distinct method of factor analysis.
Unfortunately I do not have access to that book. So can anyone explain to me what the pcf option does or point me to some other literature source?
I would really appreciate this!
Cheers,
Boris
references:
Harman, Harry H. (1976). ?Modern Factor Analysis?. Third Edition Revised. The University of Chicago Press. Chicago and London.
I started working with factor analyses these days and I was wondering what Stata is actually doing when one uses the option pcf (principal component factors) of the -factor- command.
At first I thought this is just another way of conducting principal component analysis as in the -pca- command, but the results are quite different (see code below).
Actually, the exact same question was raised earlier on statalist (see https://www.stata.com/statalist/arch.../msg00321.html ) and Amadou pointed towards the text book by Harman (1976), where principal component factoring is apparently described as a distinct method of factor analysis.
Unfortunately I do not have access to that book. So can anyone explain to me what the pcf option does or point me to some other literature source?
I would really appreciate this!
Cheers,
Boris
references:
Harman, Harry H. (1976). ?Modern Factor Analysis?. Third Edition Revised. The University of Chicago Press. Chicago and London.
Code:
use http://www.ats.ucla.edu/stat/stata/output/m255, clear keep item13 item14 item15 item16 item27 item39 findit polychoric // This calculates polychoric correlation matrices, by Stas Kolenikov qui polychoric item* mat r=r(R) local N = r(sum_w) factormat r, n(`N') pcf rotate pcamat r, n(`N')
Comment