Skip to content
Prev 351347 / 398502 Next

Using names in function with ellipsis (non standard evaluation?)

Thanks a lot to all of you for the help!

Duncan's solution is what I was looking for!

In my examples I assumed that if f(...) is called by g then the names
I use in g were transferred to f, which is not true.

But calling f as Duncan explained ( g <- function(x,y) f(x=x,y=y) )
solves the issue!

Thanks a lot again for helping me with this!

Cheers,
Luca
On Thu, May 28, 2015 at 10:49 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: