Skip to content

Commit a73ba18

Browse files
committed
Update hist_scipy.py example
It seems like normed=True argument is no longer accepted.
1 parent f8d3e94 commit a73ba18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/examples/hist_scipy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def display_histogram_scipy(bench, mean, bins):
1818
pylab.plot(values, fit, '-o', label='mean-stdev')
1919

2020
plt.legend(loc='upper right', shadow=True, fontsize='x-large')
21-
pylab.hist(values, bins=bins, normed=True)
21+
pylab.hist(values, bins=bins)
2222
pylab.show()
2323

2424

0 commit comments

Comments
 (0)