summaryrefslogtreecommitdiff
path: root/numpy/core/_methods.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: Fix IndexError for illegal axis in np.meansgasse2020-03-261-1/+1
* MAINT: Remove non-native byte order from _var check.Ross Barnowski2020-03-101-4/+0
* ENH: Adds a fast path to var for complex inputRoss Barnowski2020-03-091-0/+23
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* BUG: Move ndarray.dump to python and make it close the file it opensEric Wieser2019-06-011-0/+12
* ENH/DEP: Use a ufunc under the hood for ndarray.clipEric Wieser2019-05-141-0/+75
* MAINT: Move asarray helpers into their own moduleEric Wieser2019-04-131-1/+1
* BUG: Fix of `var` method for complex object arraysChirag Nighut2019-04-011-3/+4
* ENH: allow where in reduce operations.Marten van Kerkwijk2019-01-031-8/+8
* ENH: port __array_function__ overrides to CStephan Hoyer2018-12-191-12/+0
* ENH: refactor __array_function__ pure Python implementationStephan Hoyer2018-12-191-1/+1
* MAINT: Allow subclasses in ndarray.__array_function__.Marten van Kerkwijk2018-12-021-8/+5
* CLN: optimize ndarray.__array_function__Stephan Hoyer2018-09-241-3/+6
* ENH: initial implementation of core __array_function__ machineryStephan Hoyer2018-09-201-0/+12
* ENH: Implement initial kwarg for ufunc.add.reduceHameer Abbasi2018-04-241-8/+13
* ENH: Allow ptp to take an axis tuple and keepdimsEric Wieser2017-12-281-0/+7
* BUG: fix mean for float 16 non-array inputsJulian Taylor2017-01-241-2/+2
* Keep the subclass and update the docstring per the comment.Frederic Bastien2016-11-031-1/+1
* Simplify and still reuse out with float16 inputs.Frederic Bastien2016-10-311-4/+5
* [ENH]Make numpy.mean() do more precise computation without changing the outpu...Frederic Bastien2016-10-281-3/+12
* ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg2016-09-021-2/+3
* STY: PEP8 fixes for numpy/core/*.pyCharles Harris2015-07-051-1/+0
* ENH: avoid keyword arguments for some ufunc.reduce wrappersJulian Taylor2014-05-151-15/+19
* BUG: Fix mean, var, std methods for object arrays.Charles Harris2014-02-101-3/+9
* MAINT: typoLars Buitinck2013-10-191-1/+1
* BUG: Make ndarray.{var, std} work for scalars.Charles Harris2013-10-041-2/+3
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+0
* ENH: Make var and std methods raise error when ddof too big.Charles Harris2013-08-121-23/+29
* BUG: Make mean, sum, var, std methods return correct scalar type.Charles Harris2013-08-121-10/+10
* MAINT: Clean up core/_methods.py and core/fromnumeric.pyCharles Harris2013-08-121-9/+10
* MAINT: Separate nan functions into their own module.Charles Harris2013-08-121-83/+1
* TST: Added tests for nanmean(), nanvar(), nanstd()Benjamin Root2013-08-121-10/+19
* ENH: Adding np.nanmean(), np.nanstd(), np.nanvar()Benjamin Root2013-08-121-1/+78
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-1/+1
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-2/+6
* Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-26/+38
* BLD: core: onefile build fix and Python3 compatibility changeMark Wiebe2011-08-271-3/+3
* ENH: missingdata: Make numpy.all follow the NA && False == False ruleMark Wiebe2011-08-271-8/+0
* ENH: missingdata: Add maskna= flag to np.eye constructorMark Wiebe2011-08-271-1/+1
* ENH: core: Add static caching of the callables for C to core._method callsMark Wiebe2011-08-271-0/+105