Skip to content

Commit

Permalink
ggplot should be loaded also for aes use
Browse files Browse the repository at this point in the history
  • Loading branch information
bvreede committed Jan 10, 2024
1 parent 00d14fc commit 51297d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vignettes/workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,12 @@ For more control over the plot, two specific geometries are available: `geom_tur
In addition, there is a `talkr`-specific theme provided.

```{r}
library(ggplot2)
p <- data |>
dplyr::filter(source == "/dutch2/DVA9M") |>
dplyr::filter(end < 60000) |>
ggplot2::ggplot(aes(x = end, y = participant)) +
ggplot(aes(x = end, y = participant)) +
geom_turn(aes(
begin = begin,
end = end)) +
Expand Down

0 comments on commit 51297d1

Please sign in to comment.