
Import all instruments into individual R tables
Source:R/import_instruments.R
import_instruments.RdThis function takes the url and key for a REDCap project and returns a table for each instrument/form in the project.
Usage
import_instruments(
url,
token,
drop_blank = TRUE,
record_id = "record_id",
first_record_id = 1,
envir = .GlobalEnv
)Arguments
- url
The API URL for your the instance of REDCap
- token
The API security token
- drop_blank
Drop records that have no data. TRUE by default.
- record_id
Name of
record_idvariable (if it was changed in REDCap).- first_record_id
A value of the custom
record_idvariable (if changed in REDCap). To improve the speed of the import, tidyREDCap pulls in a single record twice. By default if uses the first record. If you have a customrecord_idvariable and if its the first record identifier is not1, specify a record identifier value here. For example if you are usingdude_idinstead ofrecord_idanddude_idhas a value of "first dude" for one of its records this argument would befirst_record_id = "first dude".- envir
The name of the environment where the tables should be saved.