Save a dataset as a Data Package
dp_save_as_datapackage(
data,
path,
name,
categories_type = c("regular", "resource")
)
Does not return anything. Called for the side effect of creating a directory and creating a number of files in this directory. Together these form a complete Data Package.
the data.frame with the data to save
directory in which to create the datapackage
name of the Data Resource. When omitted a name is generated.
how should categories be stored. See
dp_generate_fielddescriptor
.
This function is a wrapper function around new_datapackage
,
dp_generate_dataresource
and dp_write_data
. These
functions are called with the default arguments. This allows for a quick way
to save a data set with any necessary data needed to read the dataset.