Hey i'm trying to rename some columsn by adding "Last_" with the new version of dplyr but I keep getting this error
Error: `across()` must only be used inside dplyr verbs.
this is my code
data %>% rename(across(everything(), ~paste0("Last_", .)))
dplyr version: v1.0.2