ACE model

For the ACE model, how could we get the standardized 95% CI values of A/C/E component effects? @Elizabeth_Prom-Worml

Hi @Yahua_Zi ! You do this in two stages:
1- You will first develop an object that contains the results for the 95% CI for each parameter estimate
ciACE ← mxCI( “US[1,1:6]” )
2- You will then request the 95% CI to be calculated
fitACE ← mxRun( modelACE, intervals=TRUE )

1 Like