Description Usage Arguments Details
Apply one or more functions to one or more columns. Grouping variables are always excluded from modification.
1 2 3 4 5 6 7 8 9 10 11 | summarise_each(tbl, funs, ...)
summarise_each_(tbl, funs, vars)
summarize_each(tbl, funs, ...)
summarize_each_(tbl, funs, vars)
mutate_each(tbl, funs, ...)
mutate_each_(tbl, funs, vars)
|
tbl |
a tbl |
funs |
List of function calls, generated by |
vars, ... |
Variables to include/exclude in mutate/summarise.
You can use same specifications as in For standard evaluation versions (ending in |
In the future mutate_each()
and summarise_each()
will
be deprecated in favour of a more featureful family of functions:
mutate_all()
, mutate_at()
,
mutate_if()
, summarise_all()
,
summarise_at()
and summarise_if()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.