I am trying to merge approx 30 dataframes.
I have saved the global environment as a vector, comma separated, as below;
df_names <- (df1, df2, df3, df4)
Now I am trying to merge all of these dataframes
total <- merge(df_names, by = 'ID')
But I am getting an error;
Error in as.data.frame(y) : argument "y" is missing, with no default
See Question&Answers more detail:os