Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a577b commit c80897dCopy full SHA for c80897d
1 file changed
examples/pylab_examples/histogram_demo_histtypes.py
@@ -17,7 +17,7 @@
17
ax0.plot(bins, y, 'k--', linewidth=1.5)
18
19
# Create a histogram by providing the bin edges (unequally spaced).
20
-bins = [100,125,150,160,170,180,190,200,210,220,230,240,250,275,300]
+bins = [100,150,180,195,205,220,250,300]
21
n, bins, patches = ax1.hist(x, bins, normed=1, histtype='bar', rwidth=0.8)
22
23
n, bins, patches = ax2.hist(x, 50, normed=1, histtype='step', cumulative=True)
0 commit comments