Dear I have around 77 factors and I used factor analysis to reduce them. I also need to get scores for further analysis.
I used the following command..
   proc factor data=correl score outstat=fact; 
   run; 
   proc score  data=raw score=fact out=scores; 
   run;
After running this command I got 31 factors, but I want to reduce between 10~15 factors.
I used N=15, NFACT=10 but both commands does not work.
Please give me Idea how I can reduce these factors more that also do not reduce the effect of Eigen value.
Will be thankful for your nice comments & suggestions