I'm seeking to combine 10 separate dataframes together within a list of data frames I created from a standard for loop procedure. However every column name in each dataframe is unique. I don't seek to bind any columns into other columns. I simply want to place all columns next to each other. So rbind didn't work for me.
> do.call(rbind, data)
Error in match.names(clabs, names(xi)) :
names do not match previous names
Any help would be appreciated thank you.