dataCovidFin | R Documentation |
This data set provides the confirmed COVID-19 cases in 21 Finnish hospital districts, in addition to the total number.
data("dataCovidFin")
A data frame with 16082 observations on the following 3 variables.
Aika
Date
Alue
character vector: hospital district
val
numeric vector: number of new confirmed cases
The data were downloaded on March 31, 2021, via THL's open data API.
https://bit.ly/2PO1DnS
https://bit.ly/3ryfwE4
library(zoo)
data(dataCovidFin)
casesFin <- subset(dataCovidFin, subset = Alue=="Kaikki Alueet")
plot(zoo(casesFin$val,order.by=casesFin$Aika),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.