I thought that putting an internal dataset for a package into R/sysdata.rda would make the data accessible to my functions. But I can\'t seem to figure out how
If your package name is somepackage and the object saved was nhanes_files with devtools::use_data(nhanes_files, internal = TRUE) then you can access this in your functions by calling somepackage:::nhanes_files.