Chi-Square Test

fitmeasures(fit, "chisq")
##  chisq 
## 30.723
fitmeasures(fit, "chisq")/10 
## chisq 
## 3.072

Incremental Fit Index

fitmeasures(fit,"ifi")
##   ifi 
## 0.946

Comparative Fit Index

fitmeasures(fit,"cfi")
##   cfi 
## 0.937

Bentler-Bonett Index or Normed Fit Index

The null model when there are causal paths would be to have all exogenous variables are correlated but the endogenous variables are uncorrelated with each other and the exogenous variables. The degrees of freedom for this null model are \(\frac{\left[k \cdot (k-1) - p \cdot (p-1) \right]}{2}\) where \(k\) is the number of variables in the model and \(p\) the number of exogenous variables or indicators in the model.

fitmeasures(fit,"nfi")
##   nfi 
## 0.922

Tucker Lewis Index or Non-normed Fit Index (NNFI)

fitmeasures(fit,"tli")
##   tli 
## 0.584

Root Mean Square Error of Approximation

fitmeasures(fit,"rmsea")
## rmsea 
## 0.234

Standardized Root Mean Square Residual

fitmeasures(fit,"srmr")
## srmr 
## 0.06

Akaike/Bayesia Information Criterion

fitmeasures(fit,"aic")
##     aic 
## 2362.83
fitmeasures(fit,"bic")
##      bic 
## 2472.549

Resources to be Consulted