I have the following data (2 columns, 4 rows):
Column 1: A, B, C, D
Column 2: E, F, G, H
I am attempting to combine the columns into one column to look like this (1 column, 8 rows):
Column 3: A, B, C, D, E, F, G, H
I am using pandas DataFrame and have tried using different functions with no success (append
, concat
, etc.). Any help would be most appreciated!