]> nmode's Git Repositories - Rnaught/blob - R/data.R
Refactor WP
[Rnaught] / R / data.R
1 #' COVID-19 Canada National Case Counts, 2020-2022
2 #'
3 #' Daily national COVID-19 case counts in Canada, from the start of the pandemic
4 #' until the end of 2022. Provided by the COVID-19 Canada Open Data Working
5 #' Group.
6 #'
7 #' @format A data frame with 1082 observations on 3 variables:
8 #' \describe{
9 #' \item{date}{The date of reporting in YYYY-MM-DD format.}
10 #' \item{cases}{The daily number of cases.}
11 #' \item{cumulative_cases}{The cumulative number of cases.}
12 #' }
13 #'
14 #' @source \url{https://opencovid.ca}
15 "COVIDCanada"
16
17 #' COVID-19 Canada Provincial and Territorial Case Counts, 2020-2022
18 #'
19 #' Daily COVID-19 case counts for each Canadian province and territory, from the
20 #' start of the pandemic until the end of 2022. Provided by the COVID-19 Canada
21 #' Open Data Working Group.
22 #'
23 #' @format A data frame with 13169 observations on 4 variables:
24 #' \describe{
25 #' \item{region}{The two-letter code for the Canadian province or territory.}
26 #' \item{date}{The date of reporting in YYYY-MM-DD format.}
27 #' \item{cases}{The daily number of cases.}
28 #' \item{cumulative_cases}{The cumulative number of cases.}
29 #' }
30 #'
31 #' @source \url{https://opencovid.ca}
32 "COVIDCanadaPT"