Python 設定numpy不以科學計數法儲存和顯示的方法

一家之發表於2020-10-29
np.set_printoptions(suppress=True)

設定numpy顯示資料的精度

np.set_printoptions(precision=4)   

儲存為txt檔案時,設定保留幾位小數用fmt

np.savetxt('data_name‘, data.view(-1, 1), fmt='%.04f')  

print顯示由於過大而省略掉的陣列部分:

np.set_printoptions(threshold=np.inf)

相關文章