diff options
author | Kirill Zinovjev <kzinovjev@gmail.com> | 2020-01-19 19:13:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-19 19:13:32 +0000 |
commit | dd120d75a8d57345d78890a776b6b4608afb62fb (patch) | |
tree | acbc2ef7a608a81ac8c1cf8741376544994c4648 /numpy/lib/histograms.py | |
parent | bf6859c4248d3595493d2d809bafe1bc200ad6fa (diff) | |
download | numpy-dd120d75a8d57345d78890a776b6b4608afb62fb.tar.gz |
MAINT: Fix mistype in histogramdd docstring
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r-- | numpy/lib/histograms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index 0eff73b39..70ecd6eb1 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -954,9 +954,9 @@ def histogramdd(sample, bins=10, range=None, normed=None, weights=None, Note the unusual interpretation of sample when an array_like: * When an array, each row is a coordinate in a D-dimensional space - - such as ``histogramgramdd(np.array([p1, p2, p3]))``. + such as ``histogramdd(np.array([p1, p2, p3]))``. * When an array_like, each element is the list of values for single - coordinate - such as ``histogramgramdd((X, Y, Z))``. + coordinate - such as ``histogramdd((X, Y, Z))``. The first form should be preferred. |