Displaying 1 result from an estimated 1 matches for "712843".
Did you mean:
71284
2001 Jan 12
0
match.call problem (PR#813)
Previously reported by Martin as a plot.formula issue, but I believe
it boils down to this:
> f <- function(x,...)match.call(expand.dots=FALSE)
> g <- function(x,y=2,...)f(x,y=y,...)
> g(1)
f(x = x, ... = list(y = y, ...))
> g(1,b=2)
f(x = x, ... = list(y = y, b = 2))
> g(1,y=2)
f(x = x, ... = list(y = y, ...))
Notice that ... appears if all actual arguments to g are