Re: [R] Packaging - Function with dots as argument

2014-01-26 Thread Eva Prieto Castro
Hi again, I have chosen the solution reading the Rd file of xyplot.zoo function, in zoo package. Regards. Eva El Domingo 26 de enero de 2014 2:45, Eva Prieto Castro evapcas...@yahoo.es escribió: Hi everybody, I am writing the .Rd files of my pckage, and I have a doubt in relation

Re: [R] Packaging - Function with dots as argument

2014-01-26 Thread Rui Barradas
Hello, You can put that in the Details section, something like \arguments{ \item{\dots}{several arguments to pass to another function, see Details} } and then document the arguments a and b in the Details section. Hope this helps, Rui Barradas Em 26-01-2014 01:45, Eva Prieto Castro

[R] Packaging - Function with dots as argument

2014-01-25 Thread Eva Prieto Castro
Hi everybody, I am writing the .Rd files of my pckage, and I have a doubt in relation with the Rd file of a function that has dots as unique argument. I mean the following: g - function(a,b) a + b f - function( ... ) g(...) Imagine I have the Rd file of f function. The usage is as follows: