This is my data:
INF CTR Time
A 1 8 3
B 5 1 3
C 3 2 3
And I have another set of data with these same elements, but different collumn names:
INF2 CTR2 Time
A 3 1 3
B 6 4 3
C 1 7 3
I need to merge the data like this:
INF CTR INF2 CTR2 Time
A 1 8 3 1 3
B 5 1 6 4 3
C 3 2 1 7 3
How can I do it?