- dataset
A character specifying a persistent identification ID for a dataset,
for example "doi:10.70122/FK2/HXJVJU"
. Alternatively, an object of class
“dataverse_dataset” obtained by dataverse_contents()
.
- version
A character string specifying a version of the dataset. This can be one of “:draft” (the current draft), “:latest” (the latest draft, if it exists, or the latest published version), “:latest-published” (the latest published version, ignoring any draft), or “x.y” (where x is a major version and y is a minor version; the .y can be omitted to obtain a major version). In lieu of this, a dataset's version-specific identification number can be used for the dataset
argument.
- 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
Sys.setenv("DATAVERSE_KEY" = "examplekey")
.
- server
A character string specifying a Dataverse server.
Multiple Dataverse installations exist, with "dataverse.harvard.edu"
being the
most major. The server can be defined each time within a function, or it can
be set as a default via an environment variable. To set a default, run
Sys.setenv("DATAVERSE_SERVER" = "dataverse.harvard.edu")
or add DATAVERSE_SERVER = "dataverse.harvard.edu
in one's .Renviron
file (usethis::edit_r_environ()
), with the appropriate domain as its value.
- ...
Additional arguments passed to an HTTP request function, such as
GET
, POST
, or
DELETE
.
- block
A character string specifying a metadata block to retrieve.
By default this is “citation”. Other values may be available, depending
on the dataset, such as “geospatial” or “socialscience”.