as.character.formula {formula.tools} | R Documentation |
Convers a formula to character representaion
## S3 method for class 'formula'
as.character(x, ...)
x |
formula object |
... |
further arguments passed to or from other methods. |
Coerces formula to a character by deparsing.
A character vector
Christopher Brown
as.character( y ~ mx + b )
## The function is currently defined as
function(x)
Reduce( paste, deparse(x) )