Description Details Author(s) Examples
Access legacy Dataverse (version 3 and below) installations.
Provides access to The Dataverse Network Data Sharing and Data Deposit APIs for legacy Dataverse installations (versions 3 and below). For current Dataverse installations (versions 4 and above), use “dataverse,” the official R client for Dataverse.
The Data Sharing API provides access to archived data (and metadata). The dvn package provides a number of functions to translate API responses into R data structures using the XML package.
The Data Deposit API provides the ability to create and modify Dataverse studies.
Thomas J. Leeper
Maintainer: Thomas J. Leeper <thosjleeper@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | ## Not run:
## A basic Data Sharing API workflow:
# find available search fields
fields <- dvSearchFields()
# search within those fields
search <- dvSearch(list(authorName="leeper"))
# retrieve available metadata formats for a search result
formats <- dvMetadataFormats(search$objectId[1])
# retrieve metadata in an available format and find fileId(s)
files <- dvExtractFileIds(dvMetadata(search$objectId[1], format.type=formats$formatName[1]))
# optional search for information about data download
info <- dvDownloadInfo(files$fileId[1])
# download the data, if allowed by Terms of Use
data <- dvDownload(files$fileId[1])
# change Dataverse network (to Odum Institute)
options(dvn='https://arc.irss.unc.edu/dvn/')
search <- dvSearch(list(authorName="leeper"))
## End(Not run)
## Not run:
## Use basic Data Deposit API functions:
options(dvn.user="username")
options(dvn.pwd="password")
# retrieve my Dataverses and their terms of use
dvServiceDoc()
# Retrieve available studies in a user's dataverse with either:
user <- dvUserStudies("mydataverse")
# Or:
user <- dvUserStudies(dvServiceDoc())
# retrieve a 'Study Atom', providing the citation for a study
dvStudyAtom(user$studies$objectId)
# retrieve a 'Study Statement' providing files stored in a study
dvStudyStatement(user$studies$objectId)
## End(Not run)
## Not run:
## Create a study, add files, and release:
options(dvn.user="username")
options(dvn.pwd="password")
# Check credentials and accessible dataverses
dvServiceDoc()
# Create study metadata and create study with it
writeLines(dvBuildMetadata(title="My Study"),"mystudy.xml")
created <- dvCreateStudy("mydataverse","mystudy.xml")
# Get `objectId` from `dvUserStudies`
objectid <- dvUserStudies("mydataverse")$studies$objectId[1]
# Or, retrieve dataverse `objectid` from `dvCreateStudy` receipt
objectid <- created$objectId
# Add files and release study using `objectid`
dvAddFile(objectid,"mydata.zip")
# or add multiple files:
dvAddFile(objectid,c("file1.csv","file2.txt"))
# Release study
dvReleaseStudy(objectid)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.