Last chance! 50% off unlimited learning
Sale ends in
plot method for umxACE()
models. Make a graphical display of an ACE model
umxPlotACE(
x = NA,
file = "name",
digits = 2,
means = FALSE,
std = TRUE,
strip_zero = TRUE,
...
)
mxModel()
to plot (created by umxACE in order to inherit the MxModelACE class)
The name of the dot file to write: NA = none; "name" = use the name of the model
How many decimals to include in path loadings (default is 2)
Whether to show means paths (default is FALSE)
Whether to standardize the model (default is TRUE)
Whether to strip the leading "0" and decimal point from parameter estimates (default = TRUE)
Additional (optional) parameters
optionally return the dot code
plot()
, umxSummary()
work for IP, CP, GxE, SAT, and ACE models.
Other Plotting functions:
plot.MxLISRELModel()
,
plot.MxModel()
,
umxPlotACEcov()
,
umxPlotACEv()
,
umxPlotCP()
,
umxPlotGxEbiv()
,
umxPlotGxE()
,
umxPlotIP()
,
umxPlotSexLim()
,
umxPlotSimplex()
,
umx
# NOT RUN {
require(umx)
data(twinData)
mzData = subset(twinData, zygosity == "MZFF")
dzData = subset(twinData, zygosity == "DZFF")
m1 = umxACE("plotACE example", selDVs = "bmi", dzData = dzData, mzData = mzData, sep = "")
plot(m1, std = FALSE) # don't standardize
# }
Run the code above in your browser using DataLab