evalSubFormula | R Documentation |
Evaluate a part of a formula
evalSubFormula(x, data = NULL, ops = c("+", "&"), env = parent.frame())
x |
an object appearing as a subformula (typically a name or a call) |
data |
a data frame or environment in which things are evaluated |
ops |
a vector of operators that are not evaluated as operators but
instead used to further split |
env |
an environment in which to search for objects not in |
a data frame containing the terms of the evaluated subformula
if (require(mosaicData)) {
data(CPS85)
cps <- CPS85[1:6,]
cps
evalSubFormula( rhs( ~ married & sector), data=cps )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.