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
Hello, think I found a minor variable misuse issue. Here are lines 362 and 363 in run.R when pars is defined:
pars
S_0 = population - seed, E1_0 = seed,
It seems that these call for seeding_cases instead of seed, as line 298 says:
seeding_cases
seed
parameters$seeding_cases <- pars$E1_0.
parameters$seeding_cases <- pars$E1_0
Found this when passing a seed greater than my population size to calibrate(), which threw the following error:
calibrate()
Error in init_check_explicit(init, population, seeding_cases) : population size is not large enough in each age bracket
The text was updated successfully, but these errors were encountered:
@OJWatson - can you try running things with:
options(warnPartialMatchAttr=TRUE, warnPartialMatchDollar=TRUE, warnPartialMatchArgs=TRUE)
and it will likely flush out the root cause of this
Sorry, something went wrong.
Yup will try and get round to this today :)
No branches or pull requests
Hello, think I found a minor variable misuse issue. Here are lines 362 and 363 in run.R when
pars
is defined:It seems that these call for
seeding_cases
instead ofseed
, as line 298 says:parameters$seeding_cases <- pars$E1_0
.Found this when passing a
seed
greater than my population size tocalibrate()
, which threw the following error:The text was updated successfully, but these errors were encountered: