I have randomly split the sample into two to carry out EFA on one sample and CFA on the other using the following code:
Code:
set seed 12345 generate random = uniform() sort random generate group= . replace grp = 1 in 1/200 replace grp = 2 in 201/401
Code:
preserve drop if grp == 2 tetrachoric i1-i18, posdef matrix mysigma = r(Rho) // saving the tetrachoric correlation matrix factormat mysigma, n(401) mineigen(1) blanks(0.2) // factor analysis screeplot rotate, promax(3) oblique kaiser blanks(0.3) restore
What am I missing here?
0 Response to Item Exploratory Factor Analysis - results changing when code is rerun
Post a Comment