I was going through the documentation of rename() function in dplyr and found something interesting. They had this concept of unquoting of symbol, but I think I didn't quit grasp the idea from the example.
Unquoting: Like all dplyr verbs, select() supports unquoting of symbols:library(dplyr)
vars <- c(var1 = "cyl", var2 ="am")
select(mtcars, !!vars)
And then they had a concept of !!!vars
. tidyverse
Is it just selecting those two columns and that's it or something special going on. If not, why bother using it?