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. You also need to document exported datasets.
Usage
use_data(
...,
internal = FALSE,
overwrite = FALSE,
compress = "bzip2",
version = 3,
ascii = FALSE
)
use_data_raw(name = "DATASET", open = rlang::is_interactive())
Arguments
- ...
Unquoted names of existing objects to save.
- internal
If
FALSE
, saves each object in its own.rda
file in thedata/
directory. These data files bypass the usual export mechanism and are available whenever the package is loaded (or viadata()
ifLazyData
is not true).If
TRUE
, stores all objects in a singleR/sysdata.rda
file. Objects in this file follow the usual export rules. Note that this means they will be exported if you are using the commonexportPattern()
rule which exports all objects except for those that start with.
.- overwrite
By default,
use_data()
will not overwrite existing files. If you really want to do so, set this toTRUE
.- compress
Choose the type of compression used by
save()
. Should be one of "gzip", "bzip2", or "xz".- version
The serialization format version to use. The default, 3, can only be read by R versions 3.5.0 and higher. For R 1.4.0 to 3.5.3, use version 2.
- ascii
if
TRUE
, an ASCII representation of the data is written. The default value ofascii
isFALSE
which leads to a binary file being written. IfNA
andversion >= 2
, a different ASCII representation is used which writes double/complex numbers as binary fractions.- 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
utils::file.edit()
otherwise.
See also
The data chapter of R Packages.