I cannot figure out how to do this in one run
G07, G08, G09, G11, G12, G13, G14
so I know how to do the first one
paste0("G0",7:9)
i also know how to do the second part
paste0("G",10:14)
All what I could think of is to combine them by rbind
rbind (paste0("G0",7:9),paste0("G",10:14))
this is not a good way and I am looking to see if you can guide me to find a better way?