extended.model.frame {multiblock} | R Documentation |
Extracting the Extended Model Frame from a Formula or Fit
Description
This function attempts to apply model.frame
and extend the
result with columns of interactions.
Usage
extended.model.frame(formula, data, ..., sep = ".")
Arguments
formula |
a model formula or terms object or an R object. |
data |
a data.frame, list or environment (see |
... |
further arguments to pass to |
sep |
separator in contraction of names for interactions (default = "."). |
Value
A data.frame
that includes everything a model.frame
does plus interaction terms.
Examples
dat <- data.frame(Y = c(1,2,3,4,5,6),
X = factor(LETTERS[c(1,1,2,2,3,3)]),
W = factor(letters[c(1,2,1,2,1,2)]))
extended.model.frame(Y ~ X*W, dat)
[Package multiblock version 0.8.8.1 Index]