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>.
You can install the released version of covid19br from CRAN with:
install.packages("covid19br")
And the development version from GitHub with:
# install.packages("devtools")
::install_github("fndemarqui/covid19br") devtools
Downloading COVID-19 pandemic data:
library(covid19br)
library(tidyverse)
<- downloadCovid19("brazil")
brazil <- downloadCovid19("regions")
regions <- downloadCovid19("states")
states <- downloadCovid19("cities")
cities <- downloadCovid19("world") world