On 11/24/2012 05:20 PM, Sunthud Pornprasertmanit wrote:
> I found this article is very useful. It goes each fit index in details:
>
> West, S. G., Taylor, A. B., &**Wu, W. (2012). Model fit and model
> selection in structural equation modeling. In R. H. Hoyle (Ed.),
> /Handbook of Structural Equation Modeling./ New York: Guilford.
While we are on the topic of fit indices: the dev version has expanded
the list of available fit measures. See below. Any fit measures that
should be added?
Yves.
library(lavaan)
example(cfa)
fitMeasures(fit)
fmin chisq df pvalue
0.142 85.306 24.000 0.000
baseline.chisq baseline.df baseline.pvalue cfi
918.852 36.000 0.000 0.931
tli nnfi rfi nfi
0.896 0.896 0.861 0.907
pnfi ifi rni logl
0.605 0.931 0.931 -3737.745
unrestricted.logl npar aic bic
-3695.092 21.000 7517.490 7595.339
ntotal bic2 rmsea rmsea.ci.lower
301.000 7528.739 0.092 0.071
rmsea.ci.upper rmsea.pvalue rmr rmr_nomean
0.114 0.001 0.082 0.082
srmr srmr_nomean cn_05 cn_01
0.065 0.065 129.490 152.654
gfi agfi pgfi mfi
0.943 0.894 0.503 0.903
ecvi
0.423
or in a more verbose (and unfinished) from:
> lavaan:::print.fit.measures(fitMeasures(fit))
Model test baseline model:
Minimum Function Test Statistic 918.852
Degrees of freedom 36
P-value 0.000
Full model versus baseline model:
Comparative Fit Index (CFI) 0.931
Tucker-Lewis Index (TLI) 0.896
Bentler-Bonett Non-normed Fit Index (NNFI) 0.896
Bentler-Bonett Normed Fit Index (NFI) 0.907
Parsimony Normed Fit Index (PNFI) 0.605
Bollen's Relative Fit Index (RFI) 0.861
Bollen's Incremental Fit Index (IFI) 0.931
Relative Noncentrality Index (RNI) 0.931
Loglikelihood and Information Criteria:
Loglikelihood user model (H0) -3737.745
Loglikelihood unrestricted model (H1) -3695.092
Number of free parameters 21
Akaike (AIC) 7517.490
Bayesian (BIC) 7595.339
Sample-size adjusted Bayesian (BIC) 7528.739
Root Mean Square Error of Approximation:
RMSEA 0.092
90 Percent Confidence Interval 0.071 0.114
P-value RMSEA <= 0.05 0.001
Standardized Root Mean Square Residual:
RMR 0.082
RMR (No Mean) 0.082
SRMR 0.065
SRMR (No Mean) 0.065
Other Fit Indices:
Hoelter Critical N (CN) alpha=0.05 129.490
Hoelter Critical N (CN) alpha=0.01 152.654
Goodness of Fit Index (GFI) 0.943
Adjusted Goodness of Fit Index (AGFI) 0.894
Parsimony Goodness of Fit Index (PGFI) 0.503
McDonald Fit Index (MFI) 0.903
Expected Cross-Validation Index (ECVI) 0.423