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

Replace dplyr's scoped variants to across()

yutannihilation opened this issue · comments

Will that resolve the

Using across() in filter() is deprecated, use if_any() or if_all().

warnings? That would be great. Example code:

ggplot2::ggplot(data.frame(x = c(1, 2), y = c(1, 2), show = c(TRUE, FALSE)), ggplot2::aes(x = x, y = y)) +
    ggplot2::geom_point() +
    gghighlight::gghighlight(show)

Oh, no. This issue is already addressed by b586c18, but I didn't notice the warning. Thanks for the comment!

Let me close this issue and file a new one.