We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This would make it easier to program with facets.
From https://stackoverflow.com/questions/53218152/ggplot2-facet-grid-with-conditional-facets-and-tidy-evaluation
plot_iris <- function(df_in, facet_var = NULL){ ggplot(df_in) + geom_point(aes(Sepal.Length, Sepal.Width)) + facet_grid(vars(!!enquo(facet_var)), vars(idx)) }