
Options include digits (rounding), showing means or not, and which output format is desired.
umxPlotSimplex(
x = NA,
file = "name",
digits = 2,
means = FALSE,
std = TRUE,
format = c("current", "graphviz", "DiagrammeR"),
strip_zero = TRUE,
...
)
The umxSimplex()
model to display graphically
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 (defaults to 2)
Whether to show means paths (defaults to FALSE)
Whether to standardize the model (defaults to TRUE)
= c("current", "graphviz", "DiagrammeR")
Whether to strip the leading "0" and decimal point from parameter estimates (default = TRUE)
Optional additional parameters
Optionally return the dot code
plot()
, umxSummary()
work for IP, CP, GxE, SAT, simplex, ACEv, or ACE model.
Other Plotting functions:
plot.MxLISRELModel()
,
plot.MxModel()
,
umxPlotACEcov()
,
umxPlotACEv()
,
umxPlotACE()
,
umxPlotCP()
,
umxPlotGxEbiv()
,
umxPlotGxE()
,
umxPlotIP()
,
umxPlotSexLim()
,
umx
# NOT RUN {
data(iqdat)
mzData = subset(iqdat, zygosity == "MZ")
dzData = subset(iqdat, zygosity == "DZ")
selDVs = c("IQ_age1", "IQ_age2", "IQ_age3", "IQ_age4")
m1 = umxSimplex(selDVs = selDVs, sep = "_T", dzData = dzData, mzData = mzData)
# plot(m1)
# }
Run the code above in your browser using DataLab