Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiyangt/denguedatahub
Dengue Data Hub
https://github.com/thiyangt/denguedatahub
Last synced: 8 days ago
JSON representation
Dengue Data Hub
- Host: GitHub
- URL: https://github.com/thiyangt/denguedatahub
- Owner: thiyangt
- Created: 2023-01-16T09:07:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T11:51:29.000Z (about 2 months ago)
- Last Synced: 2024-09-16T01:10:12.341Z (about 2 months ago)
- Language: R
- Homepage: https://denguedatahub.netlify.app/
- Size: 3.6 MB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![R-CMD-check](https://github.com/thiyangt/denguedatahub/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/thiyangt/denguedatahub/actions/workflows/R-CMD-check.yaml)
# denguedatahub
The goal of `denguedatahub` is to provide the research community with a unified dataset by collecting worldwide dengue-related data, merged with exogenous variables helpful for a better understanding of the spread of dengue and the reproducibility of research.
![](hexsticker/profile.png)
Check out the website at https://denguedatahub.netlify.app/
## Installation
You can install the development version of denguedatahub from [GitHub](https://github.com/) with:
```r
install.packages("denguedatahub")
`````` r
# install.packages("devtools")
devtools::install_github("thiyangt/denguedatahub")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(tsibble)
library(denguedatahub)
head(level_of_risk)
```## Sri Lanka Weekly Dengue Cases
```{r}
head(srilanka_weekly_data)
```## World
```{r, message=FALSE, warning=FALSE}
library(tidyverse)
world_annual |>
filter(region=="Afghanistan") |>
head()
```