diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2009-04-10 02:18:52 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2009-04-10 02:18:52 +0000 |
commit | d1701c6e988329368d486675b0c190643b6f5ee0 (patch) | |
tree | a3e188311edc02140fae63862d6784f53493ec7d /numpy/lib/function_base.py | |
parent | e02bf24487e84fb7bbb6bb2ffc25d5833f5ae30d (diff) | |
download | numpy-d1701c6e988329368d486675b0c190643b6f5ee0.tar.gz |
Make histogramdd documentation a bit clearer.
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: |