Hi experts!
I have the Numpy arrays A=[a1,a2,...]
and B=[b1,b2,...]
. I know that I can export these arrays doing:
np.savetxt('array A.csv', A, delimiter=',')
np.savetxt('array B.csv', B, delimiter=',')
I wanna export one cvs file that include both arrays + labels, in this way:
A | B
--------
a1 | b1
a2 | b2
. | .
. | .
. | .
How can I do that?
Waiting for your answers.
Thanks a lot.
Best regards