Numpy Turn Off Scientific Notation

preview_player
Показать описание
In this video, I'll show you how to suppress scientific notation in Numpy. I find myself needing to do this when I want to improve readability.

Suppressing Numpy's scientific notation can be achieved using Numpy's set_printoptions function.
Рекомендации по теме
Комментарии
Автор

Thanks mate ! perfect !

For anyone who want to copy it :
numpy.set_printoptions(precision=8, suppress=True)

alexmassy