summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: revert back to separate median implementationJulian Taylor2014-03-131-66/+112
* ENH: add extended axis and keepdims support to median and percentileJulian Taylor2014-03-131-52/+113
* remove assert in _get_ufunc_and_otypes, add a test in test_function_base.pyLeoMao2014-03-121-3/+3
* when initialize a vectorize object, always set self._ufunc to None first. fix...LeoMao2014-03-111-2/+1
* Merge pull request #4372 from charris/fix-gh-2423Charles Harris2014-03-011-88/+95
|\
| * DOC: Fix documentation of normed in histogram2d and histogramdd.Charles Harris2014-02-261-88/+95
* | Merge pull request #4284 from robquant/histogramdd_rightmost_binedgeJulian Taylor2014-03-011-3/+3
|\ \
| * | Fix histogramdd treatment of events at rightmost binedgeRobert Franke2014-02-121-3/+3
| |/
* | BUG: accept non arrays in cor and corrcoeffJulian Taylor2014-02-271-0/+2
|/
* ENH: Allow meshgrid to work for 1D and 0D cases.rhewett2013-12-181-11/+11
* Correct typo in interp() docstring.Christopher Dembia2013-12-061-1/+1
* BUG: Fix np.insert with negative axis.Sebastian Berg2013-12-021-1/+1
* ENH: improve add_newdocs performanceJulian Taylor2013-11-191-5/+4
* BUG: cov/corrcoef complex input and empty arraysJoseph Martinot-Lagarde2013-10-161-22/+24
* BUG: ensure percentile has same output structure as in 1.8Julian Taylor2013-10-041-21/+48
* BUG: preserve ndarray subclasses in medianJulian Taylor2013-10-021-1/+1
* STY: error and warning formatting on 'function_base.py'Yaron de Leeuw2013-09-241-18/+25
* STY: Error and warning newline standardization in function_base.pyYaron de Leeuw2013-09-241-130/+158
* STY: make function_base.py pep8 compatibleYaron de Leeuw2013-09-221-175/+204
* TST: note on overwrite_input parameter in percentileJonathan Helmus2013-09-161-2/+3
* MAINT: changed 'closest' interpolation to 'nearest'Jonathan Helmus2013-09-161-4/+4
* DOC: changes to scoreatpercentile docstring, doc test now passesJonathan Helmus2013-09-131-18/+20
* MAINT: cleaning up percentile function.Jonathan Helmus2013-09-131-13/+11
* ENH: percentile function with additional parameters and vecorizationJonathan Helmus2013-09-131-66/+90
* ENH: Improve accuracy of numpy.gradient at edgesdanieljfarrell2013-09-071-23/+72
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-26/+26
* BUG: fix np.median so it accepts array_like input. Clean up median tests.Ralf Gommers2013-08-171-0/+1
* MAINT: Separate nan functions into their own module.Charles Harris2013-08-121-334/+8
* ENH: implement median in terms of partitionJulian Taylor2013-08-121-12/+32
* BUG: Make np.insert check for out of bounds axis arguments.Félix Hartmann2013-08-021-1/+6
* BUG: Fix bug in np.insert when axis=-1Félix Hartmann2013-08-021-1/+1
* Link cumsum and diff to one another as theyre roughly the inverse of each otherNils Werner2013-07-241-1/+1
* DOC: Harmonize max and min docstrings with each otherendolith2013-05-171-8/+10
* DOC: Mention all min/max functions from all others, clarify differencesendolith2013-05-161-10/+28
* MAINT: Apply 2to3 idioms fixer.Charles Harris2013-05-021-2/+1
* Merge pull request #3280 from seberg/issue-3279seberg2013-04-271-1/+2
|\
| * BUG: np.insert must copy index arraySebastian Berg2013-04-271-1/+2
* | 2to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris2013-04-131-0/+1
|/
* FIX: rename xrange to range in python 2Sebastian Berg2013-04-111-1/+4
* MAINT: np.delete keep old out of bound/negative index behaviorSebastian Berg2013-04-111-9/+23
* FIX: insert/delete fixes and warnings for non-integer indicesSebastian Berg2013-04-111-25/+43
* ENH: larger fixes for np.delete and np.insert functionsSebastian Berg2013-04-111-53/+147
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-1/+1
|\
| * DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2013-03-191-1/+1
* | 2to3: Use absolute imports.Charles Harris2013-03-281-6/+6
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-2/+2
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* Merge pull request #3047 from charris/2to3-callablenjsmith2013-02-281-1/+2
|\
| * 2to3: Fix callable.Charles Harris2013-02-281-1/+2