From a3004f5437134b6c2046d2dd9ae05549faef4f86 Mon Sep 17 00:00:00 2001 From: derekmeyer37 <105825983+derekmeyer37@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:03:54 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20UofUEpiB?= =?UTF-8?q?io/epiworldRShiny@698137c52cb7f80a11e15e3856ef4085bec2624f=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 404.html | 15 ++ CODE_OF_CONDUCT.html | 13 ++ LICENSE-text.html | 13 ++ articles/getting_started.html | 218 ++++++++++++++++++++++++ articles/index.html | 88 ++++++++++ articles/interventions.html | 221 +++++++++++++++++++++++++ authors.html | 13 ++ index.html | 15 ++ pkgdown.yml | 6 +- reference/epiworldRShiny.html | 13 ++ reference/epiworldRenv.html | 13 ++ reference/find_scale.html | 13 ++ reference/index.html | 13 ++ reference/models_setup.html | 13 ++ reference/network_input.html | 13 ++ reference/npi_add_all.html | 13 ++ reference/npi_add_masking.html | 13 ++ reference/npi_add_school_closure.html | 13 ++ reference/npi_add_vaccine.html | 13 ++ reference/npis_input.html | 13 ++ reference/numeric_input_ndays.html | 13 ++ reference/plot_epi.html | 15 +- reference/plot_reproductive_epi.html | 15 +- reference/pop_generator.html | 13 ++ reference/population_input.html | 13 ++ reference/seed_input.html | 13 ++ reference/simulate_button.html | 13 ++ reference/slider_input_rate.html | 13 ++ reference/slider_prevalence.html | 13 ++ reference/text_input_disease_name.html | 13 ++ sitemap.xml | 9 + 31 files changed, 884 insertions(+), 4 deletions(-) create mode 100644 articles/getting_started.html create mode 100644 articles/index.html create mode 100644 articles/interventions.html diff --git a/404.html b/404.html index afaf31e..5440fd0 100644 --- a/404.html +++ b/404.html @@ -40,6 +40,21 @@
vignettes/getting_started.Rmd
+ getting_started.Rmd
Welcome to epiworldRShiny, a powerful Shiny app designed to enhance +the functionality of the epiworldR package for simulating agent-based +models. The package offers a user-friendly interface that enables users +to simulate infectious diseases using nine different epidemiological +models. With epiworldRShiny, incorporating various interventions such as +vaccines, masking, and school closures into your simulations can be done +with ease. The package also provides intuitive visualization tools to +help interpret and analyze simulation results. Whether you’re a +researcher, healthcare professional, or student, epiworldRShiny +simplifies the process of simulating and understanding the dynamics of +infectious diseases.
+In order to run the epiworldRShiny application, first ensure that the +package is installed and loaded using the following code. To launch the +application, use call the function, epiworldRShiny().
+
+# install.packages("epiworldRShiny")
+library(epiworldRShiny)
+#> Loading required package: shiny
+# epiworldRShiny()
After launching the application, notice the sidebar contains many +disease and model parameters which can be modified. Altering these +parameters will affect the spread of the infectious disease in the +simulated population. Name the disease of interest, specify the +parameters of choice (listed below), and select “run simulation”.
+The above graphic demonstrates launching the application and running +the model with COVID-19 as the disease. After running the simulation, +plots of the distributions of states and the disease’s reproductive +number over time, a model summary, and table of each state’s counts over +time are all displayed.
+In this example, the model of choice is a SEIR Network model. Notice +the day of peak infections occurs on day 12, maxing at about 18,000 +infections. After roughly 40 days, the state’s curves taper off, meaning +that the majority of the population has recovered from the disease. The +reproductive number plot demonstrates that the disease spread rapidly at +the beginning of the simulation, and drastically decreased over the +first 10 days. The model summary returns important information about the +simulation such as the model choice, population size, simulation speed, +disease(s) present, any tool(s) present, and model parameters. The +distribution table displays the counts for each state at baseline and +conclusion. The transition probabilities table displays the probability +of moving between states. For example, the probability that a +susceptible agent remains in the susceptible state is 0.62, with a +probability of moving to the exposed state 0.38. Lastly, the counts +table shows the state’s counts over time, marking the peak infection +count in bold font.
+vignettes/interventions.Rmd
+ interventions.Rmd
To run the epiworldRShiny application, first ensure that the package +is installed and loaded using the following code. To launch the +application, use call the function, epiworldRShiny().
+
+# install.packages("epiworldRShiny")
+library(epiworldRShiny)
+#> Loading required package: shiny
+# epiworldRShiny()
This example features the implementation of the vaccine and school +closure interventions to curb disease spread. All model output can be +interpreted using the same logic from example #1.
+The above graphic demonstrates launching the application and running +the model with COVID-19 as the disease. To modify the intervention +parameters, scroll to the bottom of the application sidebar, select +“interventions”, and modify as desired. After running the simulation, +plots of the distributions of states and the disease’s reproductive +number over time, a model summary, and table of each state’s counts over +time are all displayed.
+In this example, the model of choice is a SEIRD Network model. Notice +the day of peak infections occurs on day 12, maxing out at 3,882 +infections. Notice in the SEIRD model plot, there are very few exposed, +infected, and deceased agents while the number of susceptible and +recovered agents over the course of the simulation changes rapidly. Due +to the vaccine, which decreases the probability of infection, and school +closures which decrease the probability of exposure to COVID-19, there +are a significantly decreased number of exposed, infected, and deceased +agents.
+The above SEIRD model figures demonstrate the distribution of states +over time both with and without interventions present (left and right +figures respectively). With no measure to combat the spread of COVID-19, +the number of exposed, infected, and deceased individuals greatly +increase compared to the model with interventions. The peak number of +infections occurs earlier, on day 11, with a total of 17,616 infections +at the peak, compared to 3,882 infections on day 12 with interventions +present. This indicates that the vaccination and school closing measures +were effective in reducing the number of infections and deaths in this +simulated population.
+