Picking up on an earlier thread, (Use string as filter in dplyr?),
what would the new tidyeval answer for this be, as filter_
is being deprecated.
Is there a way to use a string variable as the filter argument in dplyr? For example:
filter(iris,Sepal.Length > 6)
would be replaced with
string <- 'Sepal.Length > 6'
filter(iris,string)