diff options
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/twodim_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py index a8ae3dba0..9e3377411 100644 --- a/numpy/lib/twodim_base.py +++ b/numpy/lib/twodim_base.py @@ -584,7 +584,7 @@ l belonging to the samples falling into each bin. Examples -------- - 2D-Histogram with fixed bin width: + 2D-histogram with fixed bin width: >>> x, y = np.random.randn(2, 100) >>> H, xedges, yedges = np.histogram2d(x, y, bins=(5, 8)) @@ -602,7 +602,7 @@ l belonging to the samples falling into each bin. >>> plt.show() - 2D-Histogram with variable bin size: + 2D-histogram with variable bin size: >>>import numpy as np, matplotlib.pyplot as plt x = np.random.normal(3, 2, 1000) |