Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/Data_Input/Data_Input.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ knitr::include_graphics("images/Data_Input_new_project_topright.png")

CO Heat-related ER visits dataset:

We're going to load a dataset from the Colorado Environmental Public Health Tracking Program. This dataset has age-adjusted visit rates and total number of visits for all genders by Colorado county for 2011-2023.
We're going to load a dataset from the Colorado Environmental Public Health Tracking Program. This dataset has age-adjusted visit rates and total number of visits for all genders by Colorado county for 2011-2022.

* Check out the data at: https://coepht.colorado.gov/heat-related-illness

Expand Down
3 changes: 3 additions & 0 deletions modules/Data_Summarization/lab/Data_Summarization_Lab_Key.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ What was the total population in the dataset based on the 2010 census? (use `sum

```{r 1.2response}
ces |> pull(TotalPop) |> sum()

# Alternative
ces |> summarize(popSum = sum(TotalPop))
```

### 1.3
Expand Down
Loading