diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-01-19 20:19:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-19 20:19:38 +0100 |
commit | 0a413e6c5651327fff8568b0e317de2305df13a7 (patch) | |
tree | acbc2ef7a608a81ac8c1cf8741376544994c4648 /numpy | |
parent | bf6859c4248d3595493d2d809bafe1bc200ad6fa (diff) | |
parent | dd120d75a8d57345d78890a776b6b4608afb62fb (diff) | |
download | numpy-0a413e6c5651327fff8568b0e317de2305df13a7.tar.gz |
Merge pull request #15350 from kzinovjev/patch-1
MAINT: Fix mistype in histogramdd docstring
Diffstat (limited to 'numpy')
-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. |