I have tried the merge function to merge two csv files that I imported. They both have the same variable names and data types but each time I run merge all that
merge
I am guessing that you actually want to rbind the data.frames, rather than merging them?
rbind
Try:
obj <- rbind(obj1, obj2)
merge() is really used to do the equivalent of a JOIN in SQL.
merge()
JOIN