Hello,
I have conducted a factor analysis on 10 variables scaled 1 to 10 that assess customer perceptions using the commands
Since vars X6 and X13 loaded high on factor 4, results were used to construct a "summated scale" for the 4th factor as
As you can see, I "reverse scored" X13 since its factor loading was negative.
Now, I want to create a factor score using predict as follows
Here is my question. Do I have to first "reverse score" X13 before using predict to obtain factor scores?
Thanks so much,
Adam
I have conducted a factor analysis on 10 variables scaled 1 to 10 that assess customer perceptions using the commands
Code:
factor X6-X10 X12-X14 X16 X18, pcf rotate, varimax
Code:
generate NX13 = 10-X13 generate sf4 = (X6+NX13)/2
Now, I want to create a factor score using predict as follows
Code:
factor X6-X10 X12-X14 X16 X18, pcf rotate, varimax predict f4, regression
Thanks so much,
Adam
Comment