funs()
provides a flexible way to generate a named list of
functions for input to other functions like summarise_at()
.
funs(..., .args = list())
... | A list of functions specified by:
These arguments are automatically quoted. They
support unquoting and splicing. See
The following notations are not supported, see examples:
|
---|---|
.args, args | A named list of additional arguments to be added to all
function calls. As |
#> Warning: funs() is soft deprecated as of dplyr 0.8.0 #> Please use a list of either functions or lambdas: #> #> # Simple named list: #> list(mean = mean, median = median) #> #> # Auto named with `tibble::lst()`: #> tibble::lst(mean, median) #> #> # Using lambdas #> list(~ mean(., trim = .2), ~ median(., na.rm = TRUE)) #> This warning is displayed once per session.#> <fun_calls> #> $ mean: mean(.) #> $ mean: mean(.) #> $ mean: mean(., na.rm = TRUE)#> <fun_calls> #> $ m1: mean(.) #> $ m2: mean(.) #> $ m3: mean(., na.rm = TRUE)#> Warning: funs_() is deprecated. #> Please use list() instead #> This warning is displayed once per session.#> <fun_calls> #> $ min: min(.) #> $ max: max(.)