This example uses maximum likelihood factor analyses for one, two, and three factors. It is already apparent from the principal factor analysis that the best number of common factors is almost certainly two. The one- and three-factor ML solutions reinforce this conclusion and illustrate some of the numerical problems that can occur. The following statements produce Output 37.3.1 through Output 37.3.3:
title3 'Maximum Likelihood Factor Analysis with One Factor'; proc factor data=SocioEconomics method=ml heywood n=1; run;
title3 'Maximum Likelihood Factor Analysis with Two Factors'; proc factor data=SocioEconomics method=ml heywood n=2; run;
title3 'Maximum Likelihood Factor Analysis with Three Factors'; proc factor data=SocioEconomics method=ml heywood n=3; run;
Output 37.3.1 displays the results of the analysis with one factor.
The solution on the second iteration is so close to the optimum that PROC FACTOR cannot find a better solution; hence you receive this message:
Convergence criterion satisfied.
When this message appears, you should try rerunning PROC FACTOR with different prior communality estimates to make sure that the solution is correct. In this case, other prior estimates lead to the same solution or possibly to worse local optima, as indicated by the information criteria or the chi-square values.
The variable Employment
has a communality of 1.0 and, therefore, an infinite weight that is displayed next to the final communality estimate as a
missing/infinite value. The first eigenvalue is also infinite. Infinite values are ignored in computing the total of the eigenvalues
and the total final communality.
Output 37.3.2 displays the results of the analysis with two factors. The analysis converges without incident. This time, however, the Population
variable is a Heywood case.
Output 37.3.2: Maximum Likelihood Factor Analysis: Two Factors
2 factors will be retained by the NFACTOR criterion. |
Iteration | Criterion | Ridge | Change | Communalities | ||||
---|---|---|---|---|---|---|---|---|
1 | 0.3431221 | 0.0000 | 0.0471 | 1.00000 | 0.80672 | 0.95058 | 0.79348 | 0.89412 |
2 | 0.3072178 | 0.0000 | 0.0307 | 1.00000 | 0.80821 | 0.96023 | 0.81048 | 0.92480 |
3 | 0.3067860 | 0.0000 | 0.0063 | 1.00000 | 0.81149 | 0.95948 | 0.81677 | 0.92023 |
4 | 0.3067373 | 0.0000 | 0.0022 | 1.00000 | 0.80985 | 0.95963 | 0.81498 | 0.92241 |
5 | 0.3067321 | 0.0000 | 0.0007 | 1.00000 | 0.81019 | 0.95955 | 0.81569 | 0.92187 |
The results of the three-factor analysis are shown in Output 37.3.3.
Output 37.3.3: Maximum Likelihood Factor Analysis: Three Factors
3 factors will be retained by the NFACTOR criterion. |
Warning: | Too many factors for a unique solution. |
Iteration | Criterion | Ridge | Change | Communalities | ||||
---|---|---|---|---|---|---|---|---|
1 | 0.1798029 | 0.0313 | 0.0501 | 0.96081 | 0.84184 | 1.00000 | 0.80175 | 0.89716 |
2 | 0.0016405 | 0.0313 | 0.0678 | 0.98081 | 0.88713 | 1.00000 | 0.79559 | 0.96500 |
3 | 0.0000041 | 0.0313 | 0.0094 | 0.98195 | 0.88603 | 1.00000 | 0.80498 | 0.96751 |
4 | 0.0000000 | 0.0313 | 0.0006 | 0.98202 | 0.88585 | 1.00000 | 0.80561 | 0.96735 |
In the results, a warning message is displayed:
WARNING: Too many factors for a unique solution.
The number of parameters in the model exceeds the number of elements in the correlation matrix from which they can be estimated, so an infinite number of different perfect solutions can be obtained. The criterion approaches zero at an improper optimum, as indicated by this message:
Converged, but not to a proper optimum.
The degrees of freedom for the chi-square test are –2, so a probability level cannot be computed for three factors. Note also
that the variable Employment
is a Heywood case again.
The probability levels for the chi-square test are 0.0001 for the hypothesis of no common factors, 0.0002 for one common factor, and 0.1382 for two common factors. Therefore, the two-factor model seems to be an adequate representation. Akaike’s information criterion and Schwarz’s Bayesian criterion attain their minimum values at two common factors, so there is little doubt that two factors are appropriate for these data.