We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are several places in several functions that repeat code like this.
if( (length(fields_collapsed)==0L) | is.null(fields_collapsed) | all(nchar(fields_collapsed)==0L) ) fields_collapsed <- ifelse(is.null(fields), "", paste0(fields, collapse=",")) #This is an empty string if `fields` is NULL.
Pull it out into a reusable & testable function.
redcap_read()
redcap_read_oneshot()
redcap_read_oneshot_eav()
redcap_metadata_read()
The text was updated successfully, but these errors were encountered:
rename utilities test file
ce2de55
in preparation for #209
write REDCapR:::collapse_vector()
REDCapR:::collapse_vector()
a5eefe5
ref #209
b096bb0
wibeasley
No branches or pull requests
There are several places in several functions that repeat code like this.
Pull it out into a reusable & testable function.
redcap_read()
redcap_read_oneshot()
redcap_read_oneshot_eav()
redcap_metadata_read()
The text was updated successfully, but these errors were encountered: