auto_name {lazyeval} | R Documentation |
Any components missing a name will automatically get a name added by
looking at the first max_width
characters of the deparsed expression.
auto_name(x, max_width = 40)
x |
|
max_width |
Maximum number of characters to use |
x <- lazy_dots(1 + 2, mean(mpg))
auto_name(x)
auto_name(list(~f, quote(x)))