I'm trying to use a dplyr function:
rename_all(paste0, "_x")
which adds _x to every column in the DF (by keeping its original name + _x)
It works great but I want to exclude a column from this function using
!matches()
or something.
I'm unable to combine these two functions.