Skip to content

Commit 5a4be4c

Browse files
committed
Correct ylabel in histogram_demo_features.py example
1 parent 5416da2 commit 5a4be4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/statistics/histogram_demo_features.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
y = mlab.normpdf(bins, mu, sigma)
2828
plt.plot(bins, y, '--')
2929
plt.xlabel('Smarts')
30-
plt.ylabel('Probability')
30+
plt.ylabel('Probability density')
3131
plt.title(r'Histogram of IQ: $\mu=100$, $\sigma=15$')
3232

3333
# Tweak spacing to prevent clipping of ylabel

0 commit comments

Comments
 (0)