numpy.random.normal(loc=0.0,scale=1.0,size=None)¶Draw random samples from a normal (Gaussian) distribution.
The probability density function of the normal distribution, firstderived by De Moivre and 200 years later by both Gauss and Laplaceindependently[R255], is often called the bell curve because ofits characteristic shape (see the example below).
The normal distributions occurs often in nature. For example, itdescribes the commonly occurring distribution of samples influencedby a large number of tiny, random disturbances, each with its ownunique distribution[R255].
| Parameters: | loc : float or array_like of floats
scale : float or array_like of floats
size : int or tuple of ints, optional
|
|---|---|
| Returns: | out : ndarray or scalar
|
See also
scipy.stats.normNotes
The probability density for the Gaussian distribution is

where
is the mean and
the standarddeviation. The square of the standard deviation,
,is called the variance.
The function has its peak at the mean, and its “spread” increases withthe standard deviation (the function reaches 0.607 times its maximum at
and
[R255]). This implies thatnumpy.random.normal is more likely to return samples lying close tothe mean, rather than those far away.
References
| [R254] | Wikipedia, “Normal distribution”,http://en.wikipedia.org/wiki/Normal_distribution |
| [R255] | (1,2,3,4) P. R. Peebles Jr., “Central Limit Theorem” in “Probability,Random Variables and Random Signal Principles”, 4th ed., 2001,pp. 51, 51, 125. |
Examples
Draw samples from the distribution:
>>>mu,sigma=0,0.1# mean and standard deviation>>>s=np.random.normal(mu,sigma,1000)
Verify the mean and the variance:
>>>abs(mu-np.mean(s))<0.01True
>>>abs(sigma-np.std(s,ddof=1))<0.01True
Display the histogram of the samples, along withthe probability density function:
>>>importmatplotlib.pyplotasplt>>>count,bins,ignored=plt.hist(s,30,normed=True)>>>plt.plot(bins,1/(sigma*np.sqrt(2*np.pi))*...np.exp(-(bins-mu)**2/(2*sigma**2)),...linewidth=2,color='r')>>>plt.show()
