reexporting datasets in r packages
问题 In R packages, there is a possibility of reexporting functions. This makes it easy to recycle the same function without having to repeat the code across different packages. For example, devtools::session_info function is a reexport of sessioninfo::session_info : #' @export #' @importFrom sessioninfo session_info sessioninfo::session_info I am wondering if a similar thing is also possible for datasets. I have two different packages and I am using the same datasets in both packages. This is not