Dear colleagues,
I'm trying to estimate the following SEM using the MLMV (full information maximum likelihood) in Stata 13.1:
(Note: the line "from(b)" was included because this full model couldn't be estimated in one shot. I broke it down into 3 parts in order to obtain good starting values.)
After taking quite a while, the model does converge. I also did not notice any glaringly strange, out-of-whack, or missing SEs, statistics, or CIs in the unstandardized as well as standardized estimates.
However, at the end of the estimation procedure, there is this message shown:
How do I go about obtaining GOF statistics after using the MLMV method to estimate?
Thanks in advance for taking the time to review my query.
michael
I'm trying to estimate the following SEM using the MLMV (full information maximum likelihood) in Stata 13.1:
Code:
#delimit ; sem (cash inkind age raceblack raceother edu_hs edu_somecol edu_colgrad -> pressure) (pressure raceblack raceother edu_hs edu_somecol edu_colgrad income -> depress) (depress age edu_hs edu_somecol edu_colgrad income -> Withdrawal) (depress age edu_hs edu_somecol edu_colgrad income -> Hostility) (depress age edu_hs edu_somecol edu_colgrad income -> HarshDiscipline) (depress age edu_hs edu_somecol edu_colgrad income -> Engagement) (Withdrawal age edu_hs edu_somecol edu_colgrad income -> HarshDiscipline) (Withdrawal age edu_hs edu_somecol edu_colgrad income -> Engagement) (Hostility age edu_hs edu_somecol edu_colgrad income -> HarshDiscipline) (Hostility age edu_hs edu_somecol edu_colgrad income -> Engagement) (HarshDiscipline age raceblack raceother edu_hs edu_somecol edu_colgrad income childage boy -> Childwb) (Engagement age raceblack raceother edu_hs edu_somecol edu_colgrad income childage boy -> Childwb) (Withdrawal -> encourage listen understand) (Hostility -> friends prevent money) (HarshDiscipline -> shout spank slap) (Engagement -> play read tell) (Childwb -> cogscore internalize externalize) , method(mlmv) latent(Withdrawal Hostility HarshDiscipline Engagement Childwb) cov(e.HarshDiscipline*e.Engagement) nocapslatent from(b); #delimit cr
After taking quite a while, the model does converge. I also did not notice any glaringly strange, out-of-whack, or missing SEs, statistics, or CIs in the unstandardized as well as standardized estimates.
However, at the end of the estimation procedure, there is this message shown:
When I try to examine the post-estimation goodness-of-fit statistics, here's what Stata displays:Code:Note: The LR test of model vs. saturated is not reported because the saturated model is not full rank.
Code:
. estat gof, stats(all) ---------------------------------------------------------------------------- Fit statistic | Value Description ---------------------+------------------------------------------------------ Likelihood ratio | chi2_ms(.) | . model vs. saturated p > chi2 | . chi2_bs(.) | . baseline vs. saturated p > chi2 | . ---------------------+------------------------------------------------------ Population error | RMSEA | . Root mean squared error of approximation 90% CI, lower bound | 0.000 upper bound | . pclose | . Probability RMSEA <= 0.05 ---------------------+------------------------------------------------------ Information criteria | AIC | 115381.285 Akaike's information criterion BIC | 115893.733 Bayesian information criterion ---------------------+------------------------------------------------------ Baseline comparison | CFI | . Comparative fit index TLI | . Tucker-Lewis index ---------------------+------------------------------------------------------ Size of residuals | CD | 0.134 Coefficient of determination ---------------------------------------------------------------------------- Note: SRMR is not reported because of missing values.
Thanks in advance for taking the time to review my query.
michael
Comment