[R] Applying a function to a list of arguments ...

Gabor Grothendieck ggrothendieck at gmail.com
Fri Nov 7 14:58:31 CET 2008


Try this:

func <- function(f, ...) f(...)

# e.g.
func(sin, 0) # same as sin(0)
func(max, 1, 2) # same as max(1, 2)

On Fri, Nov 7, 2008 at 5:21 AM,  <roby.brunelli at gmail.com> wrote:
> How can I apply function f, that I get as an argument as in
>
> func <- function(f, ...) {
> .
> .
> .
> }
>
> to a list of arguments list(a, b, c) (eg the ... argument of func above)
> in order to obtain
>
> f(a, b, c)
>
> Thanks a lot,
>
> Roberto
>
>        [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list