yutannihilation / gghighlight

Highlight points and lines in ggplot2

Home Page:https://yutannihilation.github.io/gghighlight/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

multiple predicates don't work

daranzolin opened this issue · comments

Reprex::

library(gghighlight)
#> Warning: package 'gghighlight' was built under R version 4.0.5
#> Loading required package: ggplot2

set.seed(2)
d <- purrr::map_dfr(
  letters,
  ~ data.frame(
    idx = 1:400,
    value = cumsum(runif(400, -1, 1)),
    type = .,
    flag = sample(c(TRUE, FALSE), size = 400, replace = TRUE),
    stringsAsFactors = FALSE
  )
)

ggplot(d) +
  geom_line(aes(idx, value, colour = type)) +
  gghighlight(max(value) > 15, mean(flag) > 0.55)
#> label_key: type

Created on 2021-07-19 by the reprex package (v1.0.0)

Hi, I guess you are suggesting to fix the code on the vignette, but it's already fixed by this commit: 0899203

Thanks for your report anyway!