[Rd] how to keep the documents of private functions private

2012-08-25 Thread Yanming Di
First time posting on this forum. The short version of the question is how to keep the documents of private (unexported) functions private. It seems that the documents of the private functions will be compiled into the user manual even if the corresponding functions are not exported. Is there

Re: [Rd] how to keep the documents of private functions private

2012-08-25 Thread Duncan Murdoch
On 12-08-24 11:56 AM, Yanming Di wrote: First time posting on this forum. The short version of the question is how to keep the documents of private (unexported) functions private. It seems that the documents of the private functions will be compiled into the user manual even if the

Re: [Rd] how to keep the documents of private functions private

2012-08-25 Thread Hadley Wickham
To provide some background, a more general question is how to manage unexported (private) functions in an R package. I need to call them during the developing phase or even after the package is released (e.g., for debugging purpose or they may be needed by new functions), but I don’t want