summaryrefslogtreecommitdiff
path: root/numpy/lib/histograms.py
Commit message (Expand)AuthorAgeFilesLines
* ENH: Better error message when ``bins`` has float value in ``histogramdd``. (...MatteoRaso2020-05-071-1/+9
* ENH: Fix exception causes in four .py fileskeremh2020-04-241-2/+2
* DOC: Minor fix to _hist_bin_fd documentation (#15839)nglinh2020-04-031-1/+1
* DOC: Fix docstring for _hist_bin_auto.Ross Barnowski2020-03-271-5/+5
* MAINT: Replace basestring with str.Charles Harris2020-01-231-2/+1
* MAINT: Fix mistype in histogramdd docstringKirill Zinovjev2020-01-191-2/+2
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* BUG: lib: Fix histogram problem with signed integer arrays.Warren Weckesser2019-10-151-5/+15
* MAINT: spellingStephan Hoyer2019-06-111-1/+1
* MAINT: fix histogram*d dispatchersStephan Hoyer2019-06-111-1/+8
* BUG: Increment stacklevel for warnings to account for NEP-18 overrides (#13589)Stephan Hoyer2019-05-201-5/+6
* DOC: have notes in histogram_bin_edges match parameter styleRyan Levy2019-05-051-7/+7
* DOC: fixes from reviewmattip2019-01-221-0/+1
* DOC: remove python2-only methods, small cleanupsmattip2019-01-211-1/+2
* TST, DOC: enable refguide_checkTyler Reddy2018-12-141-4/+5
* resolve issues from reviewguoci2018-11-201-2/+5
* DOC: mention LOOCV in description of "stone" rule.Stephan Hoyer2018-11-201-2/+2
* ENH: Add 'ise' estimator to np.histogramguoci2018-11-201-11/+62
* ENH: set correct __module__ for objects in numpy's public APIStephan Hoyer2018-11-131-1/+5
* Merge pull request #12116 from shoyer/array-function-numpy-libCharles Harris2018-10-111-0/+18
|\
| * ENH: __array_function__ for np.lib, part 1Stephan Hoyer2018-10-081-0/+18
* | BUG: Allow boolean subtract in histogramMatthew Bowden2018-10-101-0/+8
|/
* Merge pull request #11778 from eric-wieser/histogram-overflowCharles Harris2018-08-181-3/+29
|\
| * BUG: Avoid signed overflow in histogramEric Wieser2018-08-181-3/+29
* | Merge pull request #11531 from eric-wieser/histogramdd-density-no-deprecationCharles Harris2018-07-081-5/+21
|\ \
| * | MAINT: Rename histogramdd's normed argument to density, to match histogramEric Wieser2018-07-081-5/+21
| |/
* | Merge pull request #11428 from eric-wieser/deprecate-normed-1.15.0Charles Harris2018-06-271-1/+1
|\ \
| * | BUG: Fix incorrect deprecation logic for histogram(normed=...)Eric Wieser2018-06-261-1/+1
* | | Merge pull request #11371 from eric-wieser/clarify_bin_orderCharles Harris2018-06-181-3/+4
|\ \ \ | |/ / |/| |
| * | DOC: Clarify requirement that histogram bins are monotonic.Eric Wieser2018-06-171-3/+4
| |/
* | DEP: Actually deprecate the normed argument to histogramEric Wieser2018-06-151-10/+32
|/
* BUG: histogramdd fails on large integersEric Wieser2018-04-301-1/+2
* ENH: Disable fuzzing on histogram boundariesEric Wieser2018-04-301-21/+8
* MAINT: Remove unnecessary special case for N == 0Eric Wieser2018-04-101-4/+0
* ENH: Improve histogram bins="auto" for data with little variance (#10739)Varun Nayyar2018-04-091-9/+22
* MAINT: Don't use np.arange just because `range` is shadowedEric Wieser2018-04-081-7/+11
* MAINT: Use the minlength argument of bincount to avoid a copy into a larger a...Eric Wieser2018-04-081-8/+4
* MAINT: Don't reimplement `ravel_multi_index`Eric Wieser2018-04-081-3/+2
* MAINT: Don't use a dict with numeric keys when a tuple would do fineEric Wieser2018-04-081-3/+4
* MAINT: Remove asarray call on a known arrayEric Wieser2018-04-081-2/+0
* MAINT: Remove dead code.Eric Wieser2018-04-081-3/+0
* MAINT: Remove pointless axis permutationEric Wieser2018-04-081-9/+3
* MAINT: Remove redundant operations in 1d maskingEric Wieser2018-04-081-1/+1
* BUG: Use intp for indicesEric Wieser2018-04-061-1/+1
* DOC: Document the surprising behaviour of np.histogramdd on array_likesEric Wieser2018-04-061-4/+12
* MAINT/ENH: Reuse range computation code from np.histogram in np.histogramddEric Wieser2018-04-061-29/+15
* MAINT: Give a more useful error messages for bins of an incorrect dimensionEric Wieser2018-03-261-2/+5
* MAINT: Only check bin monotonicity if not using linspaceEric Wieser2018-03-261-5/+6
* MAINT: Unify computation of `nbin[i]`Eric Wieser2018-03-261-3/+2
* MAINT: Make np.histogramdd error messages consistent with np.histogramEric Wieser2018-03-261-4/+4