I have a principal data frame and I want to add to it rows from another dataframe like this :
My two dataframes had the same number of columns and my columns had the same names. The only difference is on the type of the variables but it's nowhere specified that they should match. I tried rbind but it doesn't work.
So this is my code and the error :
rbind(data1, data2)
Error in charToDate(x) :
the string is not in an unambiguous standard format
Thank you for your time