Let\'s say I have a function that can\'t be altered, like:
add.these <- function(x,y,z) { x + y + z }
And I want to p
Are you looking for do.call?
do.call
> args=list(1,2,3) > do.call(add.these,args) [1] 6