View source: R/Methods-LandsepiParams.R
updateReproSexProb | R Documentation |
set the probabilities for an infectious host to reproduce via sex rather than via cloning at every time step. Note that time parameters must be set before updating sexual reproduction probabilities.
updateReproSexProb(params, vec)
params |
a LandsepiParams object |
vec |
a vector of size TimeParam$nTSpY +1 (season end) with the probabilities for an infectious host to reproduce via sex rather than via cloning at each time step. |
a LandsepiParams object updated
## Not run:
simul_params <- createSimulParams()
simul_params <- setTime(simul_params, Nyears=10, nTSpY=120)
simul_params <- setPathogen(simul_params, loadPathogen("rust"))
repro_sex_probs <- c(rep(0.0, 120), 1.0)
simul_params <- updateReproSexProb(simul_params, repro_sex_probs)
simul_params@Pathogen
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.