mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-25 14:21:54 +01:00
r-pkg: adding more examples. Will make some of them live with exdata in the future.
This commit is contained in:
parent
bace4bb48b
commit
e1ae1d001a
@ -12,6 +12,8 @@
|
|||||||
#' @author Paul W. Egeler, M.S., GStat
|
#' @author Paul W. Egeler, M.S., GStat
|
||||||
#' @examples
|
#' @examples
|
||||||
#' \dontrun{
|
#' \dontrun{
|
||||||
|
#' # Using an API call -------------------------------------------------------
|
||||||
|
#'
|
||||||
#' library(RCurl)
|
#' library(RCurl)
|
||||||
#'
|
#'
|
||||||
#' # Get the records
|
#' # Get the records
|
||||||
@ -25,14 +27,41 @@
|
|||||||
#'
|
#'
|
||||||
#' # Get the metadata
|
#' # Get the metadata
|
||||||
#' metadata <- postForm(
|
#' metadata <- postForm(
|
||||||
#' uri = api_url,
|
#' uri = api_url, # Supply your site-specific URI
|
||||||
#' token = api_token,
|
#' token = api_token, # Supply your own API token
|
||||||
#' content = 'metadata',
|
#' content = 'metadata',
|
||||||
#' format = 'json'
|
#' format = 'json'
|
||||||
#' )
|
#' )
|
||||||
#'
|
#'
|
||||||
#' # Convert exported JSON strings into a list of data.frames
|
#' # Convert exported JSON strings into a list of data.frames
|
||||||
#' REDCap_split(records, metadata)
|
#' REDCapRITS::REDCap_split(records, metadata)
|
||||||
|
#'
|
||||||
|
#' # Using a raw data export -------------------------------------------------
|
||||||
|
#'
|
||||||
|
#' # Get the records
|
||||||
|
#' records <- read.csv("/path/to/data/ExampleProject_DATA_2018-06-03_1700.csv")
|
||||||
|
#'
|
||||||
|
#' # Get the metadata
|
||||||
|
#' metadata <- read.csv("/path/to/data/ExampleProject_DataDictionary_2018-06-03.csv")
|
||||||
|
#'
|
||||||
|
#' # Split the tables
|
||||||
|
#' REDCapRITS::REDCap_split(records, metadata)
|
||||||
|
#'
|
||||||
|
#' # In conjunction with the R export script ---------------------------------
|
||||||
|
#'
|
||||||
|
#' # You must set the working directory first since the REDCap data export script
|
||||||
|
#' # contains relative file references.
|
||||||
|
#' setwd("/path/to/data/")
|
||||||
|
#'
|
||||||
|
#' # Run the data export script supplied by REDCap.
|
||||||
|
#' # This will create a data.frame of your records called 'data'
|
||||||
|
#' source("ExampleProject_R_2018-06-03_1700.r")
|
||||||
|
#'
|
||||||
|
#' # Get the metadata
|
||||||
|
#' metadata <- read.csv("ExampleProject_DataDictionary_2018-06-03.csv")
|
||||||
|
#'
|
||||||
|
#' # Split the tables
|
||||||
|
#' REDCapRITS::REDCap_split(data, metadata)
|
||||||
#' }
|
#' }
|
||||||
#' @return A list of \code{"data.frame"}s: one base table and zero or more
|
#' @return A list of \code{"data.frame"}s: one base table and zero or more
|
||||||
#' tables for each repeating instrument.
|
#' tables for each repeating instrument.
|
||||||
|
Loading…
Reference in New Issue
Block a user