b-rodrigues / rix

Reproducible development environments for R with Nix
https://b-rodrigues.github.io/rix/
GNU General Public License v3.0
102 stars 11 forks source link

use internal lazy-loading; `sysdata.rda` is supposed to be in `R/` and not in `data/` #220

Closed philipp-baumann closed 4 days ago

philipp-baumann commented 4 days ago

@b-rodrigues naming it sysdata.rda and putting it in data/ is confusing; i suggest we either call it sysdata.rda and put it in R/sysdata.rda, like it is recommended from CRAN in R manual and ?data (no qualified call) -> this PR. Or we go via a data approach. the latter i would not do because we want people to get it via rix::available_r(). What speaks for treating it like internal system data is that it used inside important functions of the package.

b-rodrigues commented 4 days ago

thanks, that’s much better!