Skip to content
Prev 11362 / 12125 Next

[R-pkg-devel] How and where do I document sysdata.rda

If it is *only *in sysdata.Rda, then it is accessible to your package 
code but is not available to users. (They can't, for example, use the 
"data" function to load it themselves.) So, there is no reason to 
document it. Just like there is no reason to document functions in your 
R scripts that were not exported into user space. Of course, you can 
document those functions by using the keyword "internal" in an Rd file. 
I suspect that this would work to document your internal data set as well.
On 3/20/2025 12:47 PM, Lists wrote: