I have several data frames without variables names. They are all different. I have a list with set of column names that go with each data frame (similar names for list items as data frames that match). I want to assign/use the column names on the data frame. I tried doing something with loops and then lapply but I just cannot get it. Below is an example of what I am talking about. I apologize up front for the less than perfect coding and explanation here. I am sure the answer is something I should be able to do. Any help is greatly appreciated.
#Activate a package
library(rio)
##################################################
#Create data frames
dir.create("data/")
sec1<- data.frame(x1 = 1:5,
x2 =c("L","M","N","O","P"),
x3 = c(4, 1, 9, 0, 1))
#########
sec2<- data.frame(x1 = c("A","B","C","D","E"),
x2 = 1:5,
x3 = c(12, 10, 29, 0, 5))
#########
sec3<- data.frame(x1 = c(100, 21, 91, 53, 35),
x2 = 1:5,
x3 = c("W","X","Y","Z","A"))
#Export into folder as csv file
export(sec1,"data/sec1.csv")
export(sec2,"data/sec2.csv")
export(sec3,"data/sec3.csv")
#Clear out these files for now
rm(sec1,sec2,sec3)
###############################################
#Create a list of columns names
sec1<-c("A","B","C")
sec2<-c("AA","BB","CC")
sec3<-c("AAA","BBB","CCC")
#####
listAA<-list(sec1,sec2,sec3);listAA
rm(sec1,sec2,sec3)
#I was hoping to use loop command or lapply to use the list names for the data frames
If I understand correctly, you want to add column names to a list of data.frames. Your code is confusing because you remove the data frames and then use their names for the column names:
Now use a loop to assign the column names in
listDTA
to the data frames in listlistAA
: