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
The following (very unlikely) code produces an error because the internal variable subpop_order_list never gets defined:
subpop_order_list
library(openVA) data(RandomVA5) insilico(RandomVA5, data.type="WHO2016", datacheck=FALSE, subpop="i019a")
The error message is:
Error in removeExtV5(data, prob.orig, csmf.orig, isNumeric, subpop, subpop_order_list, : object 'subpop_order_list' not found
A simple hacky patch might be to include the following after line 954 in insilico_core.r
insilico_core.r
if (is.null(subpop)) { subpop_order_list <- NULL } else { subpop_order_list <- sort(unique(subpop)) }
More may be needed if the customization.dev argument is TRUE
customization.dev
TRUE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following (very unlikely) code produces an error because the internal variable
subpop_order_list
never gets defined:The error message is:
A simple hacky patch might be to include the following after line 954 in
insilico_core.r
More may be needed if the
customization.dev
argument isTRUE
The text was updated successfully, but these errors were encountered: