I'm fairly happy with using tidyeval
within the tidyverse packages, thanks to https://dplyr.tidyverse.org/articles/programming.html.
But I'm struggling to think of the simplest way to go about adding support for tidyeval
operators to an existing package.
For instance, I'm a heavy user of the highcharter package and would like to add tidyeval to it. It currently uses naked column names as follows:
iris %>%
hchart(
type = "point",
hcaes(
x = Petal.Length,
y = Sepal.Width,
group = Species
)
)
Are there any tutorials that you folks know about?
Cheers,
Martin