The variants suffixed with _if
, _at
or _all
apply an
expression (sometimes several) to all variables within a specified
subset. This subset can contain all variables (_all
variants), a
vars()
selection (_at
variants), or variables selected with a
predicate (_if
variants).
.tbl |
A |
.funs |
List of function calls generated by Bare formulas are passed to |
.vars |
A list of columns generated by |
.predicate |
A predicate function to be applied to the columns
or a logical vector. The variables for which |
... |
Additional arguments for the function calls in
|
The verbs with scoped variants are:
mutate()
, transmute()
and summarise()
. See summarise_all()
.
filter()
. See filter_all()
.
group_by()
. See group_by_all()
.
rename()
and select()
. See select_all()
.
arrange()
. See arrange_all()
There are three kinds of scoped variants. They differ in the scope of the variable selection on which operations are applied:
Verbs suffixed with _all()
apply an operation on all variables.
Verbs suffixed with _at()
apply an operation on a subset of
variables specified with the quoting function vars()
. This
quoting function accepts tidyselect::vars_select()
helpers like
starts_with()
. Instead of a vars()
selection, you can also
supply an integerish vector of column
positions or a character vector of column names.
Verbs suffixed with _if()
apply an operation on the subset of
variables for which a predicate function returns TRUE
. Instead
of a predicate function, you can also supply a logical vector.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.