Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjbe committed Nov 12, 2024
1 parent 7d2b7e7 commit 9c69b34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/ojothemes-vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ First, let's see how this data looks on a default ggplot:
p1 <- data |>
# We'll look at the bookings by race here,
# and we'll look by month just to make it easier to see.
mutate(book_month = floor_date(book_date, "months")) |>
count(book_month, race) |>
count(book_month = floor_date(book_date, "months"),
race) |>
ggplot(aes(x = book_month, y = n, fill = race)) +
geom_col()
Expand Down

0 comments on commit 9c69b34

Please sign in to comment.