umxSummaryACEcov | R Documentation |
Summarize a Cholesky model with random-effects covariates, as returned by umxACEcov()
umxSummaryACEcov(
model,
digits = 2,
showRg = FALSE,
std = TRUE,
comparison = NULL,
CIs = TRUE,
zero.print = ".",
report = c("markdown", "html"),
file = getOption("umx_auto_plot"),
returnStd = FALSE,
extended = FALSE,
...
)
model |
A |
digits |
Round to how many digits (default = 2) |
showRg |
= Whether to show the genetic correlations (FALSE) |
std |
= Whether to show the standardized model (TRUE) |
comparison |
You can run mxCompare on a comparison model (NULL) |
CIs |
Whether to show Confidence intervals if they exist (TRUE) |
zero.print |
How to show zeros (".") |
report |
If "html", then open an html table of the results. |
file |
The name of the dot file to write: NA = none; "name" = use the name of the model |
returnStd |
Whether to return the standardized form of the model (default = FALSE) |
extended |
How much to report (FALSE) |
... |
Other parameters to control model summary |
optional OpenMx::mxModel()
umxACEcov()
Other Summary functions:
umxSummary.MxModel()
,
umxSummaryCP()
,
umxSummaryGxE()
,
umxSummaryIP()
,
umxSummaryMRDoC()
## Not run:
require(umx)
data(twinData)
mzData = subset(twinData, zygosity == "MZFF")
dzData = subset(twinData, zygosity == "DZFF")
m1 = umxACEcov(selDVs = c("bmi", "wt"), selCovs = "ht", dzData = dzData, mzData = mzData, sep="")
umxSummaryACEcov(m1, file = NA)
umxSummaryACEcov(m1, file = "name", std = TRUE)
stdFit = umxSummary(m1, returnStd = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.