Further Information
- This app (and all others) are structured such that the Shiny part (the graphical interface you are currently using and the server-side function that goes with it) calls an underlying R script which runs the simulation for the model of interest and returns the results.
- For this app, the underlying function running the simulation is called
simulate_multipathogen.R
. You can call this function directly, without going through the shiny app. Type ?simulate_multipathogen
into the R console for more information (you need to exit the graphical interface first or start a new R session). If you go that route, you need to use the results returned from this function and produce useful output (such as a plot) yourself.
- You can also modify this R function for your own purposes. That requires some more R coding knowledge.
- To get a quick start explaining how to interact with the simulator functions directly, read the vignette for the package (type
vignette('DSAIDE')
into the R console).
References