JJJ
0
Q:

matplitlib how to draw a bell curve

import numpy
import matplotlib.pyplot as plt
'''The first value is the mean, the second value is the standard deviation,
and the third value is the amount of data values'''
x = numpy.random.normal(5.0, 1.0, 100000)

plt.hist(x, 100)
plt.show()
0

New to Communities?

Join the community