Python_2  1.0
Namespaces | Variables
_04_histogram_demo.py File Reference

Namespaces

 _04_histogram_demo
 A histogram displays numerical data by grouping data into "bins" of equal width.
 

Variables

 _04_histogram_demo.mu
 
 _04_histogram_demo.sigma
 
 _04_histogram_demo.x = mu + sigma * np.random.randn(10000)
 Holds a sample (or samples) from the “standard normal” distribution. More...
 
int _04_histogram_demo.n = 0
 Number of counts in each bin of the histogram. More...
 
 _04_histogram_demo.bins = None
 Left hand edge of each bin. More...
 
 _04_histogram_demo.patches = None
 The individual patches used to create the histogram, e.g a collection of rectangles. More...
 
 _04_histogram_demo.density
 
 _04_histogram_demo.True
 
 _04_histogram_demo.facecolor
 
 _04_histogram_demo.alpha
 
 _04_histogram_demo.y = norm.pdf(bins, mu, sigma)
 
 _04_histogram_demo.l = plt.plot(bins, y, 'r--', linewidth=1)