Skip to content

Commit

Permalink
make heat index figure interactive
Browse files Browse the repository at this point in the history
issue reference #80
  • Loading branch information
skdunnigan committed Feb 5, 2024
1 parent 97febed commit f08ecda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion text/environmental-drivers.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ rm(fun_in, gtm_prcp)
# Convert to 'heat index' from raw temperature. https://www.wpc.ncep.noaa.gov/html/heatindex_equation.shtml
ggplotly(
MET %>%
filter(datetimestamp >= as.POSIXct("2023-01-01 00:00")) %>%
aggreswmp(by = "hours") %>%
Expand All @@ -403,7 +404,8 @@ MET %>%
axis.title = element_text(size = 12, color = "black"),
legend.position = "none") +
labs(x = "",
y = "Heat Index (\u00b0F)")
y = "Hourly Averaged Heat Index (\u00b0F)")
)
```

```{r}
Expand Down

0 comments on commit f08ecda

Please sign in to comment.