Extract AIC from MxModel
Returns the AIC for an OpenMx model. Original Author: Brandmaier
## S3 method for class 'MxModel' extractAIC(fit, scale, k, ...)
| fit | an fitted  | 
| scale | not used | 
| k | not used | 
| ... | any other parameters (not used) | 
AIC value
Other Reporting functions: 
RMSEA.MxModel(),
RMSEA.summary.mxmodel(),
RMSEA(),
loadings(),
residuals.MxModel(),
tmx_show.MxMatrix(),
tmx_show(),
umxCI_boot(),
umxCI(),
umxConfint(),
umxExpCov(),
umxExpMeans(),
umxFitIndices(),
umxRotate()
## Not run: 
require(umx)
data(demoOneFactor)
manifests = names(demoOneFactor)
m1 = umxRAM("One Factor", data = demoOneFactor, type = "cov",
	umxPath("G", to = manifests),
	umxPath(var = manifests),
	umxPath(var = "G", fixedAt = 1)
)
extractAIC(m1)
# -2.615998
AIC(m1)
## End(Not run)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.