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
when calling
observations/table?studyDbId={studyDbId}
the trait "notes" is missing from result: "headerRow" and "observationVariables"
The text was updated successfully, but these errors were encountered:
@fg-sempre This issue is regarding QMBS in R. It can be solved in R with the functions ahead.
list_trials() set_trial("SuBR_23_Trials_TC1") studies <- list_studies() studies set_study(studies$studyName[1]) # selection the first study
info <- get_study_info()
study_header <- as.data.frame(lapply(info, function(x) { if (is.list(x)) { if (length(x) == 0) return(NA_character_) x <- unlist(x, recursive = FALSE, use.names = FALSE) if (length(x) == 0) return(NA_character_) return(x[1]) } else { return(x) } }), stringsAsFactors = FALSE, row.names = NULL)
print(study_header)
Please, let me know if it is ok for you.
Cheers,
Sorry, something went wrong.
chris263
No branches or pull requests
when calling
observations/table?studyDbId={studyDbId}
the trait "notes" is missing from result: "headerRow" and "observationVariables"
The text was updated successfully, but these errors were encountered: