I have a for loop which produces a data frame after each iteration. I want to append all data frames together but finding it difficult. Following is what I
am
df_total = data.frame()
for (i in 1:7){
# vector output
model <- #some processing
# add vector to a dataframe
df <- data.frame(model)
df_total <- rbind(df_total,df)
}