is.formula {bazar} | R Documentation |
The function is.formula
tests if the object
x
is a formula.
is.formula(x)
x |
An object. |
A logical, TRUE
if x
is a formula.
is.formula("this is a formula")
is.formula(f <- formula("y ~ x"))
is.formula(update(f, ~ . -1))