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
If a dataset is passed with upper case letters, mapbayr will return lower case, which can be confusing
library(mapbayr) mod <- exmodel(add_exdata = F) dat <- exdata() names(dat) <- toupper(names(dat)) names(dat) #> [1] "ID" "TIME" "EVID" "AMT" "CMT" "II" "ADDL" "MDV" "DV" est <- mapbayest(mod, dat) names(get_data(est)) #> [1] "ID" "time" "evid" "amt" "cmt" "ii" "addl" "mdv" "DV" names(as.data.frame(est))[1:9] #> [1] "ID" "time" "evid" "amt" "cmt" "ii" "addl" "mdv" "DV"
Created on 2022-06-24 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If a dataset is passed with upper case letters, mapbayr will return lower case, which can be confusing
Created on 2022-06-24 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: