I have three data-frames, each of a single column, but of different lengths, each with a distinct header. How do I join them into a single data-frame? Example of input.
df1> Case 1 df2> Case 2 df3> Case 3
ABCCD TCGGS ZCRTTS
PCCGT GCQZZ
XGGTS
I'd like to combine them into a single table or data-frame, like:
Case 1 Case 2 Case 3
ABCCD TCGGS ZCRTTS
PCCGT GCQZZ
XGGTS
I've tried using merge and join, but I don't get the result above.