do.formula.trellis.xysplom
From HH v3.1-42
by Richard Heiberger
Interprets model formulas for xysplom and extended bwplots
Interprets a model formula in the context of its data.frame.
- Keywords
- models
Usage
do.formula.trellis.xysplom(formula, data, na.action = na.pass)
Arguments
- formula
model formula
- data
data.frame
- na.action
see
na.action
Value
A list containing three data.frames and three formula, one for each.
data.frame
containing the variables on the right-hand side
of the model formula.
data.frame
containing the variables on the left-hand side
of the model formula.
data.frame
containing the variables, if any, after
the conditioning bar |
of the model formula.
formula
containing the right-hand side
of the model formula.
formula
containing the left-hand side
of the model formula.
formula
containing the formula after the
conditioning bar |
of the model formula.
See Also
Examples
# NOT RUN {
tmp <- data.frame(y=1, x=2, z=3, g=4)
do.formula.trellis.xysplom( y ~ x + z | g, data=tmp)
# }
Community examples
Looks like there are no examples yet.