covid19br

R package providing a function to automatically import the Brazilian COVID-19 pandemic data into R. Brazilian data is available on country, region, state, and city levels, and are downloaded from the official Brazilian repository at <https://covid.saude.gov.br/>. The package also enables one to download the world-level COVID-19 data from the Johns Hopkins University's repository at <https://github.com/CSSEGISandData/COVID-19>.

https://github.com/fndemarqui/covid19br

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.2%) to scientific vocabulary

Keywords

brazil covid-19
Last synced: 11 months ago · JSON representation

Repository

R package providing a function to automatically import the Brazilian COVID-19 pandemic data into R. Brazilian data is available on country, region, state, and city levels, and are downloaded from the official Brazilian repository at <https://covid.saude.gov.br/>. The package also enables one to download the world-level COVID-19 data from the Johns Hopkins University's repository at <https://github.com/CSSEGISandData/COVID-19>.

Basic Info
Statistics
  • Stars: 4
  • Watchers: 1
  • Forks: 3
  • Open Issues: 1
  • Releases: 1
Topics
brazil covid-19
Created almost 6 years ago · Last pushed 11 months ago
Metadata Files
Readme Changelog License

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```

# covid19br


[![R build status](https://github.com/fndemarqui/covid19br/workflows/R-CMD-check/badge.svg)](https://github.com/fndemarqui/covid19br/actions)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/covid19br)](https://cran.r-project.org/package=covid19br)
[![Downloads](https://cranlogs.r-pkg.org/badges/covid19br)](https://cran.r-project.org/package=covid19br)
[![Total Downloads](https://cranlogs.r-pkg.org/badges/grand-total/covid19br?color=orange)](https://cran.r-project.org/package=covid19br)



The goal of the package is to provide a function to automatically import the Brazilian COVID-19 pandemic data into R. Brazilian data is available on country, region, state, and city levels, and are downloaded from the official Brazilian repository at <https://covid.saude.gov.br/>. The package also enables one to download the world-level COVID-19 data from the Johns Hopkins University's repository at <https://github.com/CSSEGISandData/COVID-19>.

## Installation

You can install the released version of covid19br from [CRAN](https://CRAN.R-project.org) with:

``` r
install.packages("covid19br")
```

And the development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("fndemarqui/covid19br")
```
## Example 

Downloading COVID-19 pandemic data:

```{r example, message = FALSE}
library(covid19br)
library(tidyverse)

brazil <- downloadCovid19("brazil")
regions <- downloadCovid19("regions")
states <- downloadCovid19("states")
cities <- downloadCovid19("cities")
world <- downloadCovid19("world")

```

Owner

  • Name: Fábio N. Demarqui
  • Login: fndemarqui
  • Kind: user
  • Location: Brazil
  • Company: Universidade Federal de Minas Gerais - UFMG

GitHub Events

Total
  • Push event: 5
Last Year
  • Push event: 5

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 62
  • Total Committers: 3
  • Avg Commits per committer: 20.667
  • Development Distribution Score (DDS): 0.065
Past Year
  • Commits: 11
  • Committers: 1
  • Avg Commits per committer: 11.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
fndemarqui f****i@g****m 58
dest-ufmg f****i@e****r 3
Fábio N. Demarqui 3****i 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 0
  • Total pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 3.0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
  • romainfrancois (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 123 last-month
  • Total dependent packages: 1
  • Total dependent repositories: 1
  • Total versions: 10
  • Total maintainers: 1
cran.r-project.org: covid19br

Brazilian COVID-19 Pandemic Data

  • Versions: 10
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 123 Last month
Rankings
Forks count: 14.3%
Dependent packages count: 18.3%
Stargazers count: 23.7%
Dependent repos count: 24.2%
Average: 27.5%
Downloads: 57.0%
Maintainers (1)
Last synced: 11 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.5.0 depends
  • curl * imports
  • data.table * imports
  • dplyr * imports
  • httr * imports
  • rlang * imports
  • sf * imports
  • tidyr * imports
  • ggrepel * suggests
  • kableExtra * suggests
  • knitr * suggests
  • leaflet * suggests
  • plotly * suggests
  • pracma * suggests
  • rmarkdown * suggests
  • testthat * suggests
  • tidyverse * suggests
.github/workflows/check-standard.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/pkgdown.yaml actions
  • JamesIves/github-pages-deploy-action v4.4.1 composite
  • actions/checkout v3 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite