The path diagram for this congeneric (one-factor) model is shown in Figure 17.23.
The only difference between the current path diagram in Figure 17.23 for the congeneric (one-factor) model and the preceding path diagram in Figure 17.20 for the full (two-factor) model is that the double-headed path that connects F1
and F2
is fixed to 1 in the current path diagram. Accordingly, you need to modify only slightly the preceding PROC CALIS specification
to form the new model specification, as shown in the following statements:
proc calis data=lord; path W <=== F1, X <=== F1, Y <=== F2, Z <=== F2; pvar F1 = 1.0, F2 = 1.0, W X Y Z; pcov F1 F2 = 1.0; run;
This specification sets the covariance between F1
and F2
to 1.0 in the PCOV statement. An annotated fit summary is displayed in Figure 17.24.
The chi-square value is 36.2095 (df = 2, p < 0.0001). This indicates that you can reject the hypothesized model at the 0.01 -level. The standardized root mean square error (SRMSR) is 0.0277, which indicates a good fit. Bentler’s comparative fit index is 0.9766, which is also a good model fit. However, the adjusted GFI (AGFI) is 0.8570, which is not very impressive. Also, the RMSEA value is 0.1625, which is too large to be an acceptable model. Therefore, the congeneric model might not be the one you want to use.
The estimation results are displayed in Figure 17.25. Because the model does not fit well, the corresponding estimation results are not interpreted.
Perhaps a more natural way to specify the model under hypothesis is to use only one factor in the PATH model, as shown in the following statements:
proc calis data=lord; path W <=== F1, X <=== F1, Y <=== F1, Z <=== F1; pvar F1 = 1.0, W X Y Z; run;
This produces essentially the same results as the specification with two factors that have perfect correlation.