mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 13:30:23 +01:00
53 lines
1.2 KiB
R
53 lines
1.2 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/read_redcap_tables.R
|
|
\name{read_redcap_tables}
|
|
\alias{read_redcap_tables}
|
|
\title{Download REDCap data}
|
|
\usage{
|
|
read_redcap_tables(
|
|
uri,
|
|
token,
|
|
records = NULL,
|
|
fields = NULL,
|
|
events = NULL,
|
|
forms = NULL,
|
|
raw_or_label = "label",
|
|
split_forms = "all",
|
|
generics = c("record_id", "redcap_event_name", "redcap_repeat_instrument",
|
|
"redcap_repeat_instance")
|
|
)
|
|
}
|
|
\arguments{
|
|
\item{uri}{REDCap database uri}
|
|
|
|
\item{token}{API token}
|
|
|
|
\item{records}{records to download}
|
|
|
|
\item{fields}{fields to download}
|
|
|
|
\item{events}{events to download}
|
|
|
|
\item{forms}{forms to download}
|
|
|
|
\item{raw_or_label}{raw or label tags}
|
|
|
|
\item{split_forms}{Whether to split "repeating" or "all" forms, default is all.}
|
|
|
|
\item{generics}{vector of auto-generated generic variable names to
|
|
ignore when discarding empty rows}
|
|
}
|
|
\value{
|
|
list of instruments
|
|
}
|
|
\description{
|
|
Implementation of REDCap_split with a focused data acquisition approach using
|
|
REDCapR::redcap_read nad only downloading specified fields, forms and/or events
|
|
using the built-in focused_metadata
|
|
including some clean-up. Works with longitudinal projects with repeating
|
|
instruments.
|
|
}
|
|
\examples{
|
|
# Examples will be provided later
|
|
}
|