I am working on a package in R, and am looking for a way to document the sources of external data stored in the inst/extdata
folder. I know that data in the /data
folder can be documented with roxygen as per this SO post.
The trouble seems to be that external data is not exported into the namespace of the package, and therefore tying an roxygen help document to it poses an issue. Is there a way to overcome this and to document external data similar to the method for items in the /data
folder?