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,

Re: [R] multiple functions with three dots

2008-02-01 Thread Greg Snow
ntain Healthcare [EMAIL PROTECTED] (801) 408-8111 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of John Lande > Sent: Friday, February 01, 2008 7:34 AM > To: r-help@r-project.org > Subject: [R] multiple functions with three dots > > Dea

[R] multiple functions with three dots

2008-02-01 Thread John Lande
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, ...){ plot(x,y, ...) points(x,z, .