Skip to content

ramongss/COVID19-AutoReports

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

COVID-19 confirmed cases and deaths in Brazil

Dataset

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)
}

COVID-19 Confirmed cases

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.

COVID-19 Confirmed Cases

COVID-19 Deaths

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.

COVID-19 Deaths

Update

This page is daily updated automatically using Github Actions.

Last update: 08 Apr 2022, 23:54 (UTC).

About

😷 COVID-19 daily reports from Brazil, automatically generated every day at 22:00h (UTC -3:00) using Github Actions.

Topics

Resources

License

Stars

Watchers

Forks

Languages