daily summary of the Coronavirus (COVID-19) pandemic cases in Italy

italy_total

Format

A data.frame object

Source

Presidenza del Consiglio dei Ministri - Dipartimento della Protezione Civile website

Details

The dataset contains the daily summary of the Coronavirus pandemic cases in Italy. The data includes the following fields:

- date - date of notification (Date class)

- hospitalized_with_symptoms - number of hospitalised patients with symptoms

- intensive_care - intensive Care

- total_hospitalized - total hospitalized patients

- home_confinement - home confinement

- cumulative_positive_cases - total amount of current positive cases (Hospitalised patients + Home confinement)

- daily_positive_cases - new amount of current positive cases (Hospitalised patients + Home confinement)

- recovered - recovered cases

- death - death cases

- positive_clinical_activity - positive cases emerged from clinical activity

- positive_surveys_tests - positive cases emerging from surveys and tests, planned at national or regional level

- cumulative_cases - total positive cases, recovered, and death cases

- total_tests - number of tests performed

- total_people_tested - total number of people tested

- new_intensive_care - daily admissions to intensive care

- total_positive_molecular_test - total positive cases tested by molecular tests

- total_positive_rapid_antigen_test - Total positive rapid antigen tests

- molecular_test - total molecular tests

- rapid_antigen_test - total rapid antigen tests

Examples

data(italy_total) head(italy_total)
#> # A tibble: 6 x 19 #> date hospitalized_wi… intensive_care total_hospitali… home_confinement #> <date> <dbl> <dbl> <dbl> <dbl> #> 1 2020-02-24 101 26 127 94 #> 2 2020-02-25 114 35 150 162 #> 3 2020-02-26 128 36 164 221 #> 4 2020-02-27 248 56 304 284 #> 5 2020-02-28 345 64 409 412 #> 6 2020-02-29 401 105 506 543 #> # … with 14 more variables: cumulative_positive_cases <dbl>, #> # daily_positive_cases <dbl>, recovered <dbl>, death <dbl>, #> # positive_clinical_activity <dbl>, positive_surveys_tests <dbl>, #> # cumulative_cases <dbl>, total_tests <dbl>, total_people_tested <dbl>, #> # new_intensive_care <dbl>, total_positive_molecular_test <dbl>, #> # total_positive_rapid_antigen_test <dbl>, molecular_test <dbl>, #> # rapid_antigen_test <dbl>