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:
\usage{
f(...)
}
The arguments zone is as follows:
\arguments{
\item{\dots}{several arguments to pass to another function}
}
Here is my doubt: If I want to detail de arguments "a" and "b" in the Rd file
of the "f" function, how can I do it?. What "tag" and zone in the Rd file have
I to use?. I am asking this because "g" function is not a visible function in
package, so I must describe "a" and "b" in Rd file of "f" function (I can not
ask the user for reading the "g" function Rd).
I hope I have told you the idea in the best way.
Thank you in advance.
Eva
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.