Package overview

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  eval = FALSE
)

Installing and loading the package

The package can either be installed from CRAN, from our r-universe repository, or from GitHub. See the README for details. Once installed load the package using the following,

library(covidregionaldata)

Worldwide data

Accessing national data

Both the World Health Organisation (WHO) and European Centre for Disease Control (ECDC) provide worldwide national data. Access national level data for any country using:

get_national_data()

This returns daily new and cumulative (total) cases, and where available, deaths, hospitalisations, and tests. For a complete list of variables returned, see section 5, "Data glossary" below. See the documentation (?get_national_data) for details of optional arguments.

Data is returned with no gaps in the structure of the data by country over time, and NAs fill in where data are not available.

Sub-national time-series data

Accessing sub-national data

Access sub-national level data for a specific country over time using get_regional_data(). Use get_available_datasets() to explore the currently supported sub-national datasets and select the data set of interest using the country (selects the country of interest), and level (selects the spatial scale of the data) arguments of get_regional_data.

This function returns daily new and cumulative (total) cases, and where available, deaths, hospitalisations, and tests. For a complete list of variables returned, see section 5, "Data glossary" below. See the documentation (?get_regional_data) for details of optional arguments.

As for national level data any gaps in reported data are filled with NAs.

For example, data for France Level 1 regions over time can be accessed using:

get_regional_data(country = "france")

This data then has the following format:

start_using_memoise()
knitr::kable(
  tail(get_regional_data(country = "france"), n = 5)
)

Alternatively, the same data can be accessed using the underlying class as follows (the France object now contains data at each processing step and the methods used at each step),

france <- France$new(get = TRUE)
france$return()

Level 1 and Level 2 regions

All countries included in the package (see below,"Coverage") have data for regions at the admin-1 level, the largest administrative unit of the country (e.g. state in the USA). Some countries also have data for smaller areas at the admin-2 level (e.g. county in the USA).

Data for Level 2 units can be returned by using the level = "2" argument. The dataset will still show the corresponding Level 1 region.

An example of a country with Level 2 units is France, where Level 2 units are French departments:

get_regional_data(country = "france", level = "2")

This data again has the following format:

knitr::kable(
  tail(get_regional_data(country = "france", level = "2"), n = 5)
)

Totals

For totalled data up to the most recent date available, use the totals argument.

get_regional_data("france", totals = TRUE)

This data now has no date variable and reflects the latest total:

knitr::kable(
  tail(get_regional_data(country = "france", totals = TRUE), n = 5)
)

Data glossary

Subnational data

The data columns that will be returned by get_regional_data() are listed below.

To standardise across countries and regions, the columns returned for each country will always be the same. If the corresponding data was missing from the original source then that data field is filled with NA values (or 0 if accessing totals data).

Note that Date is not included if the totals argument is set to TRUE. Level 2 region/level 2 region code are not included if the level = "1".

National data

In addition to the above, the following columns are included when using get_national_data().



Try the covidregionaldata package in your browser

Any scripts or data that you put into this service are public.

covidregionaldata documentation built on Feb. 7, 2022, 9:07 a.m.