Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thiyangt/denguedatahub

Dengue Data Hub
https://github.com/thiyangt/denguedatahub

Last synced: 8 days ago
JSON representation

Dengue Data Hub

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()
```