I'm trying to merge replicate data from two columns from different csv files into a single column (of the same name). Each row is a different timepoint. I feel like this should be easy, but I'm new to coding and using the merge or rbind functions haven't gotten me very far.
For example: data1
A
0 1
2 1
4 1
data2
A
0 2
2 2
4 2
I want: data_combined
A
0 1 2
2 1 2
4 1 2
Thanks for any help!