I am trying to dump numpy array into an excel file using savetxt method, but I am getting this weird error on the console:
.18e,%.18e,%.18e,%.18e,%.18e,%.18e
you could use pandas, its really easy friendly to use.
import pandas as pd ## convert your array into a dataframe df = pd.DataFrame (array) ## save to xlsx file filepath = 'my_excel_file.xlsx' df.to_excel(filepath, index=False)
hope it helps!