I am running a Python code and need to save the data in csv format. However, just can't success. I write the code or save the data as below:
np.save('clear-m.csv', [SEn_thg, bta_thg])
np.save('blur-m.csv', [SEn_3ph, bta_3ph])
but what I get is still an NPY file instead of a csv file as below:
clear-m.csv.npy
blur-m.csv.npy
Please suggest me how to do that right?