Hello!

I was wondering how can I get factor scores which have mean = 0 and sd = 1.
I'm using the following commands:

Code:
use https://stats.idre.ucla.edu/stat/stata/output/m255, clear
drop if missing(sexism,facsex, facnat, facrank, studrank, grade, salary, yrsut, nstud)
polychoric facsex facnat facrank studrank grade salary yrsut nstud
return list
matrix r = r(R)
factormat r, n(1250) pcf sds(stdev) means(mean)
predict fac1, regression
I'm not sure whether the scores produced by stata are correct.