get_dataverse {dataverse} | R Documentation |
Get Dataverse
Description
Retrieve details of a Dataverse
Usage
get_dataverse(
dataverse,
key = Sys.getenv("DATAVERSE_KEY"),
server = Sys.getenv("DATAVERSE_SERVER"),
check = TRUE,
...
)
dataverse_contents(
dataverse,
key = Sys.getenv("DATAVERSE_KEY"),
server = Sys.getenv("DATAVERSE_SERVER"),
...
)
Arguments
dataverse |
A character string specifying a Dataverse name or an object of class “dataverse”. |
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 |
check |
A logical indicating whether to check that the value of |
... |
Additional arguments passed to an HTTP request function, such as
|
Details
get_dataverse
function retrieves basic information about a Dataverse from a Dataverse server. To see the contents of the Dataverse, use dataverse_contents
instead. Contents might include one or more “datasets” and/or further Dataverses that themselves contain Dataverses and/or datasets. To view the file contents of a single Dataset, use get_dataset
.
Value
A list of class “dataverse”.
Examples
## Not run:
# https://demo.dataverse.org/dataverse/dataverse-client-r
Sys.setenv("DATAVERSE_SERVER" = "demo.dataverse.org")
# download file from:
dv <- get_dataverse("dataverse-client-r")
# get a dataset from the dataverse
(d1 <- get_dataset(dataverse_contents(dv)[[1]]))
# download a file using the metadata
get_dataframe_by_name("roster-bulls-1996.tab", d1$datasetPersistentId)
## End(Not run)