Re: [R] multiple functions with three dots

2008-02-01 Thread Greg Snow
You can try something like: a - 1:5 b - 6:10 d - 3:7 example - function(x,y, z, ..., plot.dots, points.dots){ plot.list - list(x=x,y=y) plot.list - c(plot.list,list(...), as.list(plot.dots)) do.call(plot, plot.list) points.list - list(x=x,y=z) points.list - c(points.list,

Re: [R] multiple functions with three dots

2008-02-01 Thread Jim Lemon
John Lande wrote: Dear all, I am creating functions with the three dot strategy. I wold like to have suggestion when writing multiple functions that calls multiple functions with I will give you a couple of example: a=1:5 b=6:10 d=3:7 example=function(x,y, z, ...){