I have two data sets as CSV files with identical columns.
I want to merge them so that they are listed one below the other.
I tried this code but this only puts them together left to right:
merge(1, 2, by="Col A")
I am looking to list them one above the other in the merged data set, not next to each other.