A simple wrapper for mxAlgebra with name as the first parameter for more readable compact code.
umxAlgebra is a wrapper for mxAlgebra which has the name parameter first in order.
umxAlgebra(
name = NA,
expression,
dimnames = NA,
...,
joinKey = as.character(NA),
joinModel = as.character(NA),
verbose = 0L,
initial = matrix(as.numeric(NA), 1, 1),
recompute = c("always", "onDemand"),
fixed = "deprecated_use_recompute"
)name |
The name of the algebra (Default = NA). Note the different order compared to mxAlgebra! |
expression |
The algebra |
dimnames |
Dimnames of the algebra |
... |
Other parameters |
joinKey |
See mxAlgebra documentation |
joinModel |
See mxAlgebra documentation |
verbose |
Quiet or informative |
initial |
See mxAlgebra documentation |
recompute |
See mxAlgebra documentation |
fixed |
= See mxAlgebra documentation |
Other Advanced Model Building Functions:
umxFixAll(),
umxJiggle(),
umxRun(),
umxThresholdMatrix(),
umxUnexplainedCausalNexus(),
umx,
xmuLabel(),
xmuValues()
x = umxAlgebra("circ", 2 * pi)
class(x$formula)
x = mxAlgebra(name = "circ", 2 * pi)
class(x$formula) # "call"Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.