I have 3 numpy arrays with the following shapes:
a.shape = (120,)
b.shape = (120,)
c.shape = (120,)
I'm trying to create dataframe with the following way:
df = pd.DataFrame(data = [a, b, c], columns = ["a", "b", "c"])
and I'm getting the following error:
ValueError: 3 columns passed, passed data had 120 columns.
How can I create this dataframe with the 3 columns ?