Happy Holidays!! I am a relatively new R user, and I have not yet used lists. I am using R to pull information from 159 excel files (one per county) with up to 27 separate sheets per excel file. I would like to save these to 159 tables using a loop. I have searched through StackOverflow, and I see many examples, but I am so new that I don't understand much of the code.
#vector of the county names(shortened for this example).
county <- c("Appling", "Atkinson", "Bacon", "Baker")
for (i in 1:4) {
#lots of pulling from Excel into temp data frames
#now need to have a unique name for each county table, preferably just
#the name of the county (e.g. Appling)
unique_name <- rbind(temp1, temp2, temp3)}
Ideally, I would like to end up with the following data frames: Appling Atkinson Bacon Baker
Thanks so much for any help! Jennifer