Skip to contents

A convenience function between base::deparse() and base::deparse1().

Usage

fdeparse(expr, width.cutoff = 500L, ...)

Arguments

expr

(expression)
Any R expression.

width.cutoff

(integer: 500L)
The cutoff at which line-breaking occurs. See base::deparse1() if you need more.

...

Further arguments passed to base::deparse().

Value

character vector

Examples

#----------------------------------------------------------------------------
# fdeparse() example
#----------------------------------------------------------------------------
library(bkbase)

fdeparse(y ~ x)
#> [1] "y ~ x"