Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhodge931 committed Jul 1, 2024
1 parent 302e7f3 commit 1fee994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/articles/1_go_further.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ penguins |>
```{r}
#To zoom-in when the stat equals "identity", use dplyr::filter
penguins |>
filter(between(bill_depth_mm, 0, 15)) |>
filter(bill_depth_mm < 15) |>
gg_point(
x = bill_depth_mm,
y = body_mass_g,
Expand All @@ -481,8 +481,8 @@ penguins |>
y = bill_depth_mm,
se = TRUE,
coord = coord_cartesian(ylim = c(14.8, 15)),
y_breaks = scales::breaks_width(0.05),
# y_symmetric = FALSE,
# y_breaks = scales::breaks_width(0.05), #recreate breaks
)
```

Expand Down

0 comments on commit 1fee994

Please sign in to comment.