The title describes pretty much what I want:
instead of:
filter(mtcars, cyl == 8)
I would like to use:
var <- "cyl"
filter(mtcars, var == 8) # pseudocode
just like
mtcars[which(mtcars[,var]==8),]
I see that there are functions like
starts_with()
but IMHO none really suits for above rather simple application.