terms.call {formula.tools} | R Documentation |
terms
Description
terms method for call and expression objects
Usage
## S3 method for class 'call'
terms(x, ...)
## S3 method for class 'expression'
terms(x, ...)
Arguments
x |
A call object |
... |
Arguments passed to This S3 method returns a terms object for a call methods using a dispatch to
The terms are generated by making a rhs only call to
Some edge cases may not be supported. |
Value
A terms object. See terms.object
for details.
Author(s)
Christopher Brown
See Also
Examples
terms( quote( A + B ) )
data(iris)
x <- terms( quote( . - Species ) , data=iris )
[Package formula.tools version 1.7.1 Index]