selkamand / ggoncoplot

Easily Create Interactive Oncoplots
https://selkamand.github.io/ggoncoplot/
Other
3 stars 0 forks source link

Avoid .data in tidyselect expressions #48

Closed selkamand closed 2 months ago

selkamand commented 1 year ago

Use of .data in tidyselect expressions was deprecated in tidyselect 1.2.0. i Please use all_of(var) (or any_of(var)) instead of .data[[var]]

selkamand commented 1 year ago

Blog post dealing with change: https://www.tidyverse.org/blog/2022/10/tidyselect-1-2-0/

so will need to go through, find calls to select and convert .data$var to dplyr::all_of()

Contents of mutate should be fine as is. .data is still supported in data masking contexts, just not data selections.

aes calls I'm currently unsure about