Accessing Data In My Package

I'm experimenting with writing my own package using the guidance in Wickham and Bryan's book, "R Packages." My package is solely a convenience for myself. I have no intention to publish it.

In addition to various utility functions, I have some data sets that I’ve wrangled be made tidy for easy use. I’ve added those data sets to the data folder of my package as .rda files. The functions for that gather and wrangle the data sets are included in the package.

Some of my package’s functions rely on that data to generate results, but my checks are failing because examples in the roxygen headers for those functions can’t seem to see that the data is available.

Are there best practices somewhere to help with accessing internal package data?

Any guidance is most appreciated!

-- Robert

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.