I've created some np.arrays to do some calculation with them. (All have the same size [100,1]) Now I want to create a pandas Dataframe and each array shoud be one column of that DF. The Names of the arrays should be the header of the DataFrame.
In Matlab I would easily do it like that:
Table = table(array1, array2, array3, ... );
How can I do this in Python?
thanks in advance!