R/deparse.R

Defines functions deparse

# base::deparse might return more than one line; this 
# replaces it with a function that chops the results

deparse <- function(expr, width.cutoff = 500L, nlines = 1L, ...) {
  base::deparse(expr, width.cutoff = width.cutoff, nlines = nlines, ...)
}

Try the tables package in your browser

Any scripts or data that you put into this service are public.

tables documentation built on Sept. 14, 2024, 9:07 a.m.