dataCovid | R Documentation |
This data set consists of several statistics about the COVID-19 pandemic in 45 countries.
data("dataCovid")
A data frame with 18400 observations on the following 27 variables.
location
a character vector
date
a Date
new_cases
a numeric vector
new_cases_per_million
a numeric vector
new_cases_smoothed_per_million
a numeric vector
new_cases_smoothed
a numeric vector
new_deaths_per_million
a numeric vector
new_deaths
a numeric vector
new_deaths_smoothed_per_million
a numeric vector
new_deaths_smoothed
a numeric vector
total_deaths_per_million
a numeric vector
total_deaths
a numeric vector
total_cases
a numeric vector
total_cases_per_million
a numeric vector
hosp_patients
a numeric vector
hosp_patients_per_million
a numeric vector
icu_patients_per_million
a numeric vector
icu_patients
a numeric vector
reproduction_rate
a numeric vector
new_tests
a numeric vector
new_tests_per_thousand
a numeric vector
tests_per_case
a numeric vector
positive_rate
a numeric vector
new_tests_smoothed
a numeric vector
new_tests_smoothed_per_thousand
a numeric vector
total_tests
a numeric vector
total_tests_per_thousand
a numeric vector
This is a subset of the complete data set available online, downloaded on March 31, 2021.
https://covid.ourworldindata.org/data/owid-covid-data.csv
library(zoo)
data(dataCovid)
casesFin <- subset(dataCovid,subset=location=="Finland", select=c(date,new_cases))
plot(zoo(casesFin$new_cases,order.by=casesFin$date),ylab="New COVID-19 cases in Finland",
xlab="")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.