diff options
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 8cf2ec091..28ebb8cbd 100644 --- a/numpy/lib/twodim_base.py +++ b/numpy/lib/twodim_base.py @@ -569,9 +569,9 @@ def histogram2d(x, y, bins=10, range=None, normed=False, weights=None): The bi-dimensional histogram of samples `x` and `y`. Values in `x` are histogrammed along the first dimension and values in `y` are histogrammed along the second dimension. - xedges : ndarray, shape(nx,) + xedges : ndarray, shape(nx+1,) The bin edges along the first dimension. - yedges : ndarray, shape(ny,) + yedges : ndarray, shape(ny+1,) The bin edges along the second dimension. See Also |