diff options
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index d37dd0feb..00dc92f1f 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -391,8 +391,9 @@ def histogramdd(sample, bins=10, range=None, normed=False, weights=None): Parameters ---------- sample : array_like - Data to histogram passed as a sequence of D arrays of length N, or - as an (N,D) array. + The data to be histogrammed. It must be an (N,D) array or data + that can be converted to such. The rows of the resulting array + are the coordinates of points in a D dimensional polytope. bins : sequence or int, optional The bin specification: |