I have a large data frame imported from a Google Forms survey with very long column names (basically, the column names are the survey questions themselves).
So, my imported data frame is like this:
d<-
data.frame(LongnameLongnameLongnameLongname=1:3,AnotherOneAnotherOneAnotherone=4:6, Etc_Etc_Etc_Etc_Etc=3:5)
d
GOAL: To replace these long, idiosyncratic column names with a sequential name, such as Q1, Q2, etc.