publish_dataset {dataverse} | R Documentation |
Publish dataset
Description
Publish/release Dataverse dataset
Usage
publish_dataset(
dataset,
minor = TRUE,
key = Sys.getenv("DATAVERSE_KEY"),
server = Sys.getenv("DATAVERSE_SERVER"),
...
)
Arguments
dataset |
A character specifying a persistent identification ID for a dataset,
for example |
minor |
A logical specifying whether the new release of the dataset is a “minor” release ( |
key |
A character string specifying a Dataverse server API key. If one
is not specified, functions calling authenticated API endpoints will fail.
Keys can be specified atomically or globally using
|
server |
A character string specifying a Dataverse server.
Multiple Dataverse installations exist, with |
... |
Additional arguments passed to an HTTP request function, such as
|
Details
Use this function to “publish” (i.e., publicly release) a draft Dataverse dataset. This creates a publicly visible listing of the dataset, accessible by its DOI, with a numbered version. This action cannot be undone. There are no requirements for what constitutes a major or minor release, but a minor release might be used to update metadata (e.g., a new linked publication) or the addition of supplemental files. A major release is best used to reflect a substantial change to the dataset, such as would require a published erratum or a substantial change to data or code.
Value
A list.
See Also
get_dataset
, publish_dataverse
Examples
## Not run:
meta <- list()
ds <- create_dataset("mydataverse", body = meta)
publish_dataset(ds)
## End(Not run)