Hello Statalist-Users,
i am trying to translate a SPSS-syntax into Stata. The syntax shows a "Principal component analysis", rotation is not allowed and the factor is predictet by the bartlett-method.
The SPSS-syntax:
The corresponding Stata-Syntax: (form my point of view)
I am not sure, if this is the right tranformation. Especially i don't know what "ITERATE(25)" stands for and i don't know the corresponding Stata command.
Thanks in advance,
Amelie
i am trying to translate a SPSS-syntax into Stata. The syntax shows a "Principal component analysis", rotation is not allowed and the factor is predictet by the bartlett-method.
The SPSS-syntax:
Code:
FACTOR /VARIABLES ZGINI ZPSocPreE_r ZEFIfisfree ZEFIgovsp /MISSING LISTWISE /ANALYSIS ZGINI ZPSocPreE_r ZEFIfisfree ZEFIgovsp /PRINT INITIAL EXTRACTION /CRITERIA FACTORS(1) ITERATE(25) /EXTRACTION PC /ROTATION NOROTATE /SAVE BART(ALL) /METHOD=CORRELATION.
The corresponding Stata-Syntax: (form my point of view)
Code:
pca ZGINI ZPSocPreE_r ZEFIfisfree ZEFIgovsp, factors(1) predict facotrscore bartlett, norot
I am not sure, if this is the right tranformation. Especially i don't know what "ITERATE(25)" stands for and i don't know the corresponding Stata command.
Thanks in advance,
Amelie
Comment