W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
demo_python_ml_numpy_uniform_histogram.py:
import numpy import matplotlib.pyplot as plt x = numpy.random.uniform(0.0, 5.0, 250) plt.hist(x, 5) plt.show()
[email protected]
:/home/python#python demo_python_ml_numpy_uniform_histogram.py