vars()
is superseded because it is only needed for the scoped verbs (i.e.
mutate_at()
, summarise_at()
, and friends), which have been been
superseded in favour of across()
. See vignette("colwise")
for details.
This helper is intended to provide tidy-select semantics for scoped verbs
like mutate_at()
and summarise_at()
. Note that anywhere you can supply
vars()
specification, you can also supply a numeric vector of column
positions or a character vector of column names.
Arguments
- ...
<
tidy-select
> Variables to operate on.
See also
all_vars()
and any_vars()
for other quoting
functions that you can use with scoped verbs.