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
Given multiple parameter sets, allow for stochastic models to be stochastic within a level of one or more (e.g. stochastic across years within sites).
Interface:
par_set_list <- list(yr = 2005:2012, site = c("A", "B", "C") define_kernel(..., uses_par_sets = TRUE, par_set_indices = par_set_list) %>% define_impl(..., stoch_within = "site")
^^ Should produce 3 separate stochastic models for sites A,B,C using years 2005:2012 at each one.
A,B,C
2005:2012
NB: Not sure if this should go within define_impl or somewhere else - maybe define_pop_state() or make_ipm()
define_impl
define_pop_state()
make_ipm()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given multiple parameter sets, allow for stochastic models to be stochastic within a level of one or more (e.g. stochastic across years within sites).
Interface:
^^ Should produce 3 separate stochastic models for sites
A,B,C
using years2005:2012
at each one.NB: Not sure if this should go within
define_impl
or somewhere else - maybedefine_pop_state()
ormake_ipm()
The text was updated successfully, but these errors were encountered: