The dataset is provided by Brasil.IO which retrieves the daily information about COVID-19 cases from all 27 Brazilian State Health Offices, assembles and makes them publicly available. The data is daily updated and reported on the Twitter account.
Use the name of the table to the function download_brasilio_table
, as
caso
, caso_full
, obito_cartorio
:
download_brasilio_table <- function(dataset = "covid19", table_name){
url <- sprintf(
"https://data.brasil.io/dataset/%s/%s.csv.gz", dataset, table_name
)
tmp <- tempfile()
download.file(url, tmp)
response <- read.csv(gzfile(tmp), encoding = "UTF-8")
unlink(tmp)
return(response)
}
Currently, Brazil has a total of 29,849,740 confirmed cases at 27 Mar, 2022, with 10,311 new confirmed cases. The daily maximum incidence was 285,451 confirmed cases at 03 Feb, 2022. Here follows the Figure showing the confirmed case incidence as the bars, and the line as the moving average of the last 7 days.
Currently, Brazil has a total of 659,159 deaths at 27 Mar, 2022, with 109 new deaths. The daily maximum deaths incidence was 4,148 deaths at 08 Apr, 2021. Here follows the Figure showing the deaths incidence as the bars, and the line as the moving average of the last 7 days.
This page is daily updated automatically using Github Actions.
Last update: 08 Apr 2022, 23:54 (UTC).