Skip to content

Commit

Permalink
fix (viz): handled an issue where a date was inappropriately consider…
Browse files Browse the repository at this point in the history
…ed as a character
  • Loading branch information
njlyon0 committed Nov 13, 2024
1 parent 0b4e327 commit 41aa558
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _freeze/mod_data-viz/execute-results/html.json

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _freeze/mod_data-viz/figure-html/multi-modal-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion mod_data-viz.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,8 @@ It can be helpful to visualize all numeric variables in your dataset, grouped by

```{r demo_all-num-vars_data}
# Read in data
green_biochem <- read.csv(file = file.path("data", "green-lakes_water-chem-zooplank.csv")) # <1>
green_biochem <- read.csv(file = file.path("data", "green-lakes_water-chem-zooplank.csv")) %>% # <1>
dplyr::mutate(date = as.Date(date))
# Check structure
str(green_biochem)
Expand Down

0 comments on commit 41aa558

Please sign in to comment.