This is a web app for analysing vaccine data for the Countdown 2030. It’s also an R package so you can use some features in the code directly.
- Analyze vaccine data for Countdown 2030.
- Use as an R package for programmatic access.
- Interactive visualizations for quick insights.
You can install a stable version of cd2030 from GitHub with:
install.packages("devtools")
devtools::install_github("aphrcwaro/cd2030@1.0.0")
To get a bug fix or to use a feature from the development version, you can install the development version of cd2030.
install.packages("devtools")
devtools::install_github("aphrcwaro/cd2030")
Start the web dashboard:
cd2030::dashboard()
Analyze vaccine data programmatically:
library(cd2030)
data <- cd2030::load_excel_data('/path/to/hfd/data.xlsx')
calculate_average_reporting_rate(data)
Here is a preview of the dashboard:
Dashboard ScreenshotIf you encounter a clear bug, please file an issue with a minimal
reproducible example on
.
Contributions to improve the cd2030 package are welcome! Please fork the repository, make your changes, and submit a pull request.