Displaying 1 result from an estimated 1 matches for "extrabad".
Did you mean:
extra_pad
2003 Mar 21
5
manipulating "..." inside a function
Dear R-help,
Can some one tell me how to do the following (if it's possible)?
Suppose I have a function like this:
f <- function(x, y, ...) {
## some code
g(x, y, ...)
## some more code
}
The problem is that g() may not understand everything that comes through in
"...". Is there a way to delete some component of "..." and then pass it to
g()?
Here's