Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Right, I guess I should specify that I'm trying to avoid having to put in the same arguments. I can just assign funct1 to an object and then pass that along into funct2 Commented Oct 8, 2015 at 19:19
  • 1
    funct2 <- function() { funct1(3,4,5) * 2 } Will work, but I'm still not really sure why you would do this? You could just go funct1(3,4,5) *2 you know? Commented Oct 8, 2015 at 19:22