use_data() makes it easy to save package data in the correct format.
I recommend you save scripts that generate package data in data-raw:
use use_data_raw() to set it up.
use_data(..., internal = FALSE, overwrite = FALSE, compress = "bzip2", version = 2) use_data_raw(name = "DATASET", open = interactive())
| ... | Unquoted names of existing objects to save. |
|---|---|
| internal | If If |
| overwrite | By default, |
| compress | Choose the type of compression used by |
| version | The serialization format version to use. The default, 2, was the default format from R 1.4.0 to 3.5.3. Version 3 became the default from R 3.6.0 and can only be read by R versions 3.5.0 and higher. |
| name | Name of the dataset to be prepared for inclusion in the package. |
| open | Open the newly created file for editing? Happens in RStudio, if
applicable, or via |
The data chapter of R Packages.
if (FALSE) { x <- 1:10 y <- 1:100 use_data(x, y) # For external use use_data(x, y, internal = TRUE) # For internal use } if (FALSE) { use_data_raw("daisy") }