Import REDCap Data
import_redcap_data.RdImports REDCap dataset from a specified file path using scoring information.
This function prepares the data in a suitable format and is intended to be used
within the broader prepare_data workflow.
See also
data_paths()preparepath.prepare_data()is a wrapper of this function.
Examples
if (FALSE) { # \dontrun{
p <- data_paths("data-raw")
scor <- readr::read_delim(p[4], delim = ";", col_types = readr::cols(rev = "c"))
data <- import_redcap_data(p[2])
} # }