I have an array saved in a npy file and want to export it into readable text columns.
The array is here: https://drive.google.com/open?id=1DErx4e0NBJJNxixMSuGQaahdAcGX7jkI
I did the following:
import numpy as np
data = np.load('D:/20190805_01_data.npy')
type(data) gives numpy.ndarray
len(data) gives 1363
data.ndim gives 3
To export data I tried:
np.savetxt('D:/data.txt',data, delimiter=' ')
which does not work.
What is the correct solution?