Closed MikeLydeamore closed 2 months ago
It is best practice to include the code that converts the CSV to the rds file. This code should go inside data-raw. See here for a good example.
rds
data-raw
Make sure the file ends with a call to usethis::use_data(object_name). That will make sure everything is exported as we expect.
usethis::use_data(object_name)
Sure, I understand. Thanks, Micheal.
It is best practice to include the code that converts the CSV to the
rds
file. This code should go insidedata-raw
. See here for a good example.Make sure the file ends with a call to
usethis::use_data(object_name)
. That will make sure everything is exported as we expect.