RMSEA.MxModel | R Documentation |
Return RMSEA and its confidence interval on a model. RMSEA(tmp, silent=TRUE)$RMSEA
## S3 method for class 'MxModel'
RMSEA(x, ci.lower = 0.025, ci.upper = 0.975, digits = 3)
x |
an |
ci.lower |
the lower CI to compute (only 95%, i.e., .025 supported) |
ci.upper |
the upper CI to compute (only 95%, i.e., .975 supported) |
digits |
digits to show (default = 3) |
object containing the RMSEA, lower and upper bounds, and p-close
Other Reporting functions:
RMSEA.summary.mxmodel()
,
RMSEA()
,
extractAIC.MxModel()
,
loadings.MxModel()
,
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)
)
RMSEA(m1)
x = RMSEA(m1)
x$RMSEA # 0.0309761
# Raw: needs to be run by umx to get RMSEA
m2 = umxRAM("One Factor", data = demoOneFactor,
umxPath("G", to = manifests),
umxPath(v.m. = manifests),
umxPath(v1m0 = "G")
)
RMSEA(m2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.