From 016283d57d1ea9c401fa6ece79b2b53ac838c908 Mon Sep 17 00:00:00 2001 From: "Logan C. Brooks" Date: Wed, 4 Dec 2024 09:26:53 -0800 Subject: [PATCH 1/3] Fix typo --- slides/day1-afternoon.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/day1-afternoon.qmd b/slides/day1-afternoon.qmd index 47b4b25..7d7f799 100644 --- a/slides/day1-afternoon.qmd +++ b/slides/day1-afternoon.qmd @@ -933,7 +933,7 @@ ggplot(snapshots |> filter(!latest), ## Backfill American edition -* Again, we can see a similar systematic underestimation problem for COVID-19 morality rates in CA. +* Again, we can see a similar systematic underestimation problem for COVID-19 mortality rates in CA. * This plot also illustrates the [**revision process**]{.primary} - how the reported mortality changes & increases across multiple updates until it stabilizes at the final value (black line). From a6c717b55e296e2b4639c45e97dcc5cc8891c795 Mon Sep 17 00:00:00 2001 From: "Logan C. Brooks" Date: Wed, 4 Dec 2024 09:33:14 -0800 Subject: [PATCH 2/3] Fix typo --- slides/day1-afternoon.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/day1-afternoon.qmd b/slides/day1-afternoon.qmd index 7d7f799..0516388 100644 --- a/slides/day1-afternoon.qmd +++ b/slides/day1-afternoon.qmd @@ -1907,7 +1907,7 @@ process_covid_data <- function(Date) { * [**Tibble Creation**]{.primary}: Constructs a tibble with `geo_value`, `time_value`, `version`, and `case_rate_7d_av` to later compile into an `epi_archive` (you can think of an `epi_archive` as being a comprised of many `epi_df`s). -## Fetch Data - Process eange of dates +## Fetch Data - Process range of dates * Note that `process_covid_data()` works on one date at a time. * So now, we need a function that iterates over a date range and applies `process_covid_data()` to each date & combines the resulting tibbles into an `epi_archive`. * We call this function `process_data_for_date_range()`... From ce587ba3232c69d99b346f25f51aa2951d177995 Mon Sep 17 00:00:00 2001 From: "Logan C. Brooks" Date: Wed, 4 Dec 2024 09:37:08 -0800 Subject: [PATCH 3/3] Remove duplicate text --- slides/day1-afternoon.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/day1-afternoon.qmd b/slides/day1-afternoon.qmd index 0516388..c1e1dff 100644 --- a/slides/day1-afternoon.qmd +++ b/slides/day1-afternoon.qmd @@ -1956,7 +1956,7 @@ Here's a summary of what `process_data_for_date_range()` does: * Now, let's run the function & inspect the resulting `epi_archive` of 7-day avg. COVID-19 case counts: * Expect building the archive to some time (enough for a cup of coffee or to meditate on life). - + ```{r run-fun-process-data-range} #| echo: true # Example usage: process data between Jan. 10, 2021, and Dec. 1, 2021