https://github.com/ekstroem/shiny-vaccine
Shiny app for showing the impact of vaccines
https://github.com/ekstroem/shiny-vaccine
Last synced: 11 months ago
JSON representation
Shiny app for showing the impact of vaccines
- Host: GitHub
- URL: https://github.com/ekstroem/shiny-vaccine
- Owner: ekstroem
- Created: 2019-03-05T19:11:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T12:44:54.000Z (over 7 years ago)
- Last Synced: 2024-10-15T04:11:59.349Z (over 1 year ago)
- Language: R
- Homepage: http://sandsynligvis.dk/2019/03/06/building-a-shiny-app-to-show-the-impact-of-vaccines/
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 5
- 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 **English** language version locally on your computer with
```{r}
shiny::runGitHub("ekstroem/Shiny-Vaccine")
```
it requires that you have the following packages installed:
```{r}
library("shiny")
library("deSolve")
library("cowplot")
library("ggplot2")
library("tidyverse")
library("ggrepel")
library("shinydashboard")
```