
Last chance! 50% off unlimited learning
Sale ends in
Export Core Contents of a REDCap Project.
export_core(uri = NULL, token = NULL, format = NULL, verbose = TRUE, ...)
The URI for the REDCap API. If NULL
(default) the value
Sys.getenv("REDCap_API_URI")
is used.
The API token for the project you want to export from. If
NULL
(default) the value Sys.getenv("REDCap_API_TOKEN")
is
used.
The format to return. If NULL
(default) the value
Sys.getenv("REDCap_API_format")
is used.
provide messages to tell the user what is happening
not currently used
A rcer_rccore
object: a list with the project info, metadata,
user table, and records, all in a "raw" format direct from the API.
# NOT RUN {
# A reproducible example would require a REDCap project, accessable via an
# API token. An example of the return from these calls are provided as data
# with this package.
# avs_raw_core <- export_core()
data(avs_raw_core)
str(avs_raw_core)
# }
Run the code above in your browser using DataLab