For this we will use PROC FACTOR.
The following covers the
use we will make of PROC FACTOR today:
proc factor data=<sas-data>
cov nfactors=<n>
rotate=<rot> all;
DATA=<sas-data>
<=> input dataset specification.
COV <=> means analyse variance
covariance matrix, otherwise analyse the correlationmatrix.
NFACTORS=<n>
<=> Number
of factors we think are "significant" or "reasonable", e.g.
NFACTORS=2 which are kept for the rotation
below.
Nothing means FACTOR retains all factorer with eigenvalues>1.0
ROTATE=<rot> <=> Rotation
criterion. ROTATE=NONE
or exclusion of "ROTATE" means no rotation.
ROTATE=VARIMAX means rotate using the varimax criterion.
ALL <=> Means we want all
possible output, exepting certain plots which must be
requested seperatly.
Exercises