Skip to content

Commit 2c45cc1

Browse files
authored
updating covid_cases_deaths (#16)
1 parent 071d8d3 commit 2c45cc1

10 files changed

+9
-9
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: epidatasets
33
Title: Epidemiological Data for Delphi Tooling Examples
4-
Version: 0.0.1
4+
Version: 0.0.2
55
Authors@R: c(
66
person(c("Daniel", "J."), "McDonald", , "[email protected]", role = "aut"),
77
person("Nat", "DeFries", , "[email protected]", role = c("cre", "aut")),

R/epipredict-data.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' This data source of confirmed COVID-19 cases and deaths is based on reports
44
#' made available by the Center for Systems Science and Engineering at Johns
55
#' Hopkins University, as downloaded from the CMU Delphi COVIDcast Epidata
6-
#' API. This example data is a snapshot as of May 31, 2022, and
6+
#' API. This example data is a snapshot as of March 10, 2023, and
77
#' ranges from December 31, 2020 to December 31, 2021. It
88
#' includes all states.
99
#'

R/epiprocess-data.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
#' This data source of confirmed COVID-19 cases and deaths is based on reports
215215
#' made available by the Center for Systems Science and Engineering at Johns
216216
#' Hopkins University, as downloaded from the CMU Delphi COVIDcast Epidata
217-
#' API. This example data is a snapshot as of May 31, 2022, and
217+
#' API. This example data is a snapshot as of March 10, 2023, and
218218
#' ranges from March 1, 2020 to December 31, 2021. It
219219
#' includes all states.
220220
#'

R/sysdata.rda

1.98 KB
Binary file not shown.

data-raw/covid_case_death_rates_extension_tbl.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ library(epidatr)
33

44
source(here::here("data-raw/_helper.R"))
55

6-
d <- as.Date("2022-05-31")
6+
d <- as.Date("2023-03-10")
77

88
x <- pub_covidcast(
99
source = "jhu-csse",

data-raw/covid_case_death_rates_tbl.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ library(epidatr)
33

44
source(here::here("data-raw/_helper.R"))
55

6-
d <- as.Date("2022-05-31")
6+
d <- as.Date("2023-03-10")
77

88
x <- pub_covidcast(
99
source = "jhu-csse",

data/covid_case_death_rates.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
delayedAssign("covid_case_death_rates", local({
22
if (requireNamespace("epiprocess", quietly = TRUE)) {
3-
d <- as.Date("2022-05-31")
3+
d <- as.Date("2023-03-10")
44
epiprocess::as_epi_df(epidatasets:::covid_case_death_rates_tbl, as_of = d)
55
} else {
66
warning("Since the package `epiprocess` is not installed, this object will be loaded as a tibble (class `tbl_df`)")

data/covid_case_death_rates_extended.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
delayedAssign("covid_case_death_rates_extended", local({
22
if (requireNamespace("epiprocess", quietly = TRUE)) {
3-
d <- as.Date("2022-05-31")
3+
d <- as.Date("2023-03-10")
44
epiprocess::as_epi_df(
55
dplyr::bind_rows(
66
epidatasets:::covid_case_death_rates_extension_tbl,

man/covid_case_death_rates.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/covid_case_death_rates_extended.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)