Example Syntax and Output

Let’s review the syntax to produce an EFA on the engineering data using oblimin rotation. We will use iterated PAF extraction, although any method would provide similar results. (See Chapter 2.) We selected oblimin rotation for this data because the factors are known to be correlated. The syntax to run this analysis is presented below.[8]
proc factor data = engdata  nfactors = 2  method = PRINIT  priors = SMC
      rotate = OBLIMIN;
   var EngProb: INTERESTeng: ;
run;
This syntax produces a series of results—within which we can see the four factor loading matrices (discussed above) of particular interest to us. These matrices are presented in Figure 4.2 Factor loading matrices output. Notice how the coefficients in the unrotated ...

Get Exploratory Factor Analysis with SAS now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.