https://github.com/ekstroem/shinyvaccine
Shiny app to show the SIR model with vaccine
https://github.com/ekstroem/shinyvaccine
Last synced: about 1 year ago
JSON representation
Shiny app to show the SIR model with vaccine
- Host: GitHub
- URL: https://github.com/ekstroem/shinyvaccine
- Owner: ekstroem
- Created: 2019-02-21T02:19:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T08:53:20.000Z (over 6 years ago)
- Last Synced: 2025-01-30T14:38:29.575Z (over 1 year ago)
- Language: R
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShinyVaccine
Shiny app to show the SIR model with an additional vaccine compartment
You can run the **Danish** language version locally on your computer with
```{r}
shiny::runGitHub("ekstroem/ShinyVaccine/app.R")
```
and the English version is called with
```{r}
shiny::runGitHub("ekstroem/ShinyVaccine/app2.R")
```
it requires that you have the following packages installed:
```{r}
library("shiny")
library("deSolve")
library("cowplot")
library("ggplot2")
library("tidyverse")
library("ggrepel")
library("shinydashboard")
```