I am conducting an exploratory factor analysis using the iterated principal factor method (ipf). After determining the number of factors to retain (using a combination of screeplot, Velicer's MAP, and PA), it would be helpful to calculate the % of total variance accounted for by retained factors.
have found information indicating that, for principal component analysis (pca), the % of total variance explained = sum of eigenvalues / sum of all positive eigenvalues. Is this possible to calculate the share of total variance explained by retained factors using ipf? If so, what is the Stata command?
When I specify the number of factors to retain, it seems like stata only reports the % explained variance explained by each of the retained factors (which is always 100% cumulatively). See code and output below.
factor varlist, ipf factors(1) blanks(0.3)
have found information indicating that, for principal component analysis (pca), the % of total variance explained = sum of eigenvalues / sum of all positive eigenvalues. Is this possible to calculate the share of total variance explained by retained factors using ipf? If so, what is the Stata command?
When I specify the number of factors to retain, it seems like stata only reports the % explained variance explained by each of the retained factors (which is always 100% cumulatively). See code and output below.
factor varlist, ipf factors(1) blanks(0.3)
(obs=612) | |||||
Factor analysis/correlation Number of obs = 612 | |||||
Method: iterated principal factors Retained factors = 1 | |||||
Rotation: (unrotated) Number of params = 13 | |||||
----------- | ------------- | ------------- | ------------------ | ---------------- | |
Factor | Eigenvalue | Difference | Proportion | Cumulative | |
----------- | ------------- | ------------- | ------------------ | ---------------- | |
Factor1 | 6.92805 | 5.65735 | 1 | 1 | |
Factor2 | 1.27069 | 0.90124 | 0.1834 | 1.1834 | |
Factor3 | 0.36945 | 0.19711 | 0.0533 | 1.2367 | |
Factor4 | 0.17234 | 0.12943 | 0.0249 | 1.2616 | |
Factor5 | 0.04291 | 0.03149 | 0.0062 | 1.2678 | |
Factor6 | 0.01142 | 0.08806 | 0.0016 | 1.2695 | |
Factor7 | -0.07664 | 0.02108 | -0.0111 | 1.2584 | |
Factor8 | -0.09773 | 0.05138 | -0.0141 | 1.2443 | |
Factor9 | -0.14911 | 0.04597 | -0.0215 | 1.2228 | |
Factor10 | -0.19508 | 0.09969 | -0.0282 | 1.1946 | |
Factor11 | -0.29476 | 0.15309 | -0.0425 | 1.1521 | |
Factor12 | -0.44785 | 0.15784 | -0.0646 | 1.0874 | |
Factor13 | -0.60569 | . | -0.0874 | 1 | |
-------------------------------------------------------------------------- | |||||
LR test: independent vs. saturated: chi2(78) = 1.1e+04 Prob>chi2 = 0.0000 |
Comment