Description Usage Arguments Value Examples
some params driven by config file, others by function args
1 2 3 4  | 
num_tsteps | 
 number of timesteps to run simulation  | 
pop_start | 
 start vector population  | 
resist_freq_start | 
 frequency of resistance at start, 0 to 1  | 
resist_intensity_start | 
 intensity of resistance at start, 1 to 10  | 
survival | 
 adult survival rate  | 
emergence | 
 emerging adults, can be a vector can be greater than 1  | 
insecticide_kill | 
 kill rate due to insecticide  | 
resistance_modifier | 
 modifies effect of resistance  | 
resist_incr | 
 increase in resistance when correct insecticide present  | 
resist_decr | 
 decrease in resistance when correct insecticide absent  | 
l_config | 
 list of config parameters  | 
randomness | 
 0-1 0=none, 1=maximum  | 
list of simulation results
1 2 3 4 5 6 7 8 9  | l_time <- run_sim(pop_start=0.5, resist_freq_start=0.2, survival=0.8, emergence=0.2, insecticide_kill=0.4, resistance_modifier=1)
#plot default run
plot_sim( run_sim())
#modify params
plot_sim( run_sim( insecticide_kill = 0.3, resist_incr = 0.05 ))
#modify config file
l_config <- read_config()
l_config2 <- config_plan(l_config, t_strt=c(1,11), t_stop=c(10,20), control_id=c('irs_pyr','irs_ddt'))
plot_sim( run_sim(l_config=l_config2, resist_incr=0.1))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.