Code Monkey home page Code Monkey logo

covid19-autoreports's Introduction

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

covid19-autoreports's People

Contributors

jhklarcher avatar ramongss avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

jhklarcher

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.