data_corpus_inaugural %>%
rename(LastName = President) %>%
summary(n = 5)
data_corpus_inaugural %>%
rename_with(toupper) %>%
summary(n = 5)
data_corpus_inaugural %>%
rename_with(toupper, starts_with("P")) %>%
summary(n = 5)
Run the code above in your browser using DataLab