summaryrefslogtreecommitdiff
path: root/numpy/core/_methods.py
Commit message (Expand)AuthorAgeFilesLines
* DEP: remove deprecated casting in np.clipMatti Picus2023-03-161-67/+4
* API: Add leading underscore to `no_nep50_warning` and `get/set_promotion_state`Sebastian Berg2022-06-151-4/+4
* MAINT: Ignore warning rather than forcing output dtypeSebastian Berg2022-06-151-8/+10
* MAINT: Fortify methods (in-place division) against promotion changesSebastian Berg2022-06-151-3/+5
* PERF: Use python integer on _count_reduce_items (#21465)Pieter Eendebak2022-05-111-1/+2
* BUG: Fixed an issue wherein `var` would raise for 0d object arraysBas van Beek2021-09-091-1/+3
* ENH: Use new argument parsing for array creation functionsSebastian Berg2021-03-181-1/+1
* BUG: Fixed ``where`` keyword for ``np.mean`` & ``np.var`` methods (gh-18560)Mateusz Sokół2021-03-111-2/+2
* MAINT: Replace `contextlib_nullcontext` with `contextlib.nullcontext`Bas van Beek2020-12-051-2/+3
* ENH: Micro-optimize where=True path for mean, var, any, and allSebastian Berg2020-12-021-2/+8
* ENH: Add where argument to several functionsSimon Gasse2020-07-181-29/+51
* 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