View source: R/umx_build_umxGxEbiv.R
umxSummaryGxEbiv | R Documentation |
umxSummaryGxEbiv
summarizes a bivariate moderation model, as returned by umxGxEbiv()
.
umxSummaryGxEbiv(
model = NULL,
digits = 2,
xlab = NA,
location = "topleft",
separateGraphs = FALSE,
file = getOption("umx_auto_plot"),
comparison = NULL,
std = NULL,
reduce = FALSE,
CIs = NULL,
report = c("markdown", "html"),
returnStd = NULL,
...
)
model |
A fitted |
digits |
round to how many digits (default = 2) |
xlab |
label for the x-axis of plot |
location |
default = "topleft" |
separateGraphs |
Std and raw plots in separate graphs? (default = FALSE) |
file |
The name of the dot file to write: NA = none; "name" = use the name of the model |
comparison |
mxCompare model with this model if offered up (default = NULL). |
std |
Whether to show the standardized model (not implemented! TRUE) |
reduce |
Whether to run and tabulate a complete model reduction...(Defaults to FALSE) |
CIs |
Confidence intervals (FALSE) |
report |
markdown or html (html opens in browser) |
returnStd |
Whether to return the standardized form of the model (default = FALSE) |
... |
Optional additional parameters |
optional OpenMx::mxModel()
umxGxEbiv()
, plot()
, umxSummary()
work for IP, CP, GxE, and ACE models.
Other Twin Modeling Functions:
power.ACE.test()
,
umx
,
umxACE()
,
umxACEcov()
,
umxACEv()
,
umxCP()
,
umxDiffMZ()
,
umxDiscTwin()
,
umxDoC()
,
umxDoCp()
,
umxGxE()
,
umxGxE_window()
,
umxGxEbiv()
,
umxIP()
,
umxMRDoC()
,
umxReduce()
,
umxReduceACE()
,
umxReduceGxE()
,
umxRotate.MxModelCP()
,
umxSexLim()
,
umxSimplex()
,
umxSummarizeTwinData()
,
umxSummaryACE()
,
umxSummaryACEv()
,
umxSummaryDoC()
,
umxSummarySexLim()
,
umxSummarySimplex()
,
umxTwinMaker()
data(twinData)
df = umx_scale_wide_twin_data(twinData, varsToScale = c("ht", "wt"), sep = "")
mzData = subset(df, zygosity %in% c("MZFF", "MZMM"))
dzData = subset(df, zygosity %in% c("DZFF", "DZMM", "DZOS"))
## Not run:
m1 = umxGxEbiv(selDVs = "wt", selDefs = "ht",
dzData = dzData, mzData = mzData, sep = "", dropMissingDef = TRUE)
# Plot Moderation
umxSummary(m1)
umxSummary(m1, location = "topright")
umxSummary(m1, separateGraphs = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.