Dropping multiple columns with tidyeval (not so painful)

Fwiw, this works: select(iris, -c(!!!grpdims))

Maybe the reasoning for c(!!!v) is similar to why one does list(...) inside a function.

4 Likes