Ok, so let me put it this way. I have 10 data sets to combine named as data1, data2, data3 ......data10. But the problem is that all of them have different number of columns, some of them have 37 & the others have 38 columns. So rbind doesn't works if your data have different number of columns. Smart bind works but doing it one by one would take a lot of time. So I want to call them and bind them all at once row wise.
I believe we can do it by combining do.call function with smart bind but when I am trying to do it this way
data1 <- do.call(smartbind(data1,data2,data3,data4,data5,data6,data7,data8,data9,fill = 0 ))
it gives the following error:
Error in do.call(smartbind(data1, data2, data3, data4, data5, data6, data7, :
argument "args" is missing, with no default