I have a list of data frames, and I want to create a new data frame object with the data of all data frames.
I do not need to check any duplicity, since I do not have repetition of data, but I cannot find a function to append data from a data frame to another.
I tryed to use the merge functions as follows, with no sucess:
folds is a list() where each element is a data frame, all with the same structure but different data.
#Copies the structure to a new Object
trainingSub <- folds[[1]][0,]
#append data
for(y in 1:K){
if(y!=i){
trainingSub <- merge(trainingSub,folds[[y]],all=TRUE)
}
}