diff options
author | Frank B <frank.breitling@gmx.de> | 2013-02-05 13:21:32 +0100 |
---|---|---|
committer | Frank B <frank.breitling@gmx.de> | 2013-02-05 13:21:32 +0100 |
commit | b3f37edd68e03dc79a48f38c66e4a757aaa4d8cc (patch) | |
tree | 8bddfb7aebba6ebd204213a3059c1a95ef9e1b18 /numpy/lib/twodim_base.py | |
parent | 5b5251493d682692ac83fbeeff7bb5db3fb1996b (diff) | |
download | numpy-b3f37edd68e03dc79a48f38c66e4a757aaa4d8cc.tar.gz |
Fixed two typos.
Diffstat (limited to 'numpy/lib/twodim_base.py')
-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) |