Converts a field exported from REDCap into a valid R vector
fieldToVar(
records,
meta_data,
factors = TRUE,
dates = TRUE,
checkboxLabels = FALSE
)
A data frame of records returned by exportRecords
or exportReports
A data frame giving the data dictionary, as returned
by exportMetaData
Logical, determines if checkbox, radio button, dropdown and yesno variables are converted to factors
Logical, determines if date variables are converted to POSIXct format
Logical, determines if checkbox variables are labeled as
"Checked" or using the checkbox label. Only applicable when factors = TRUE
Jeffrey Horner
This function is called internally by exportRecords
and
exportReports
. it is not available to the user.