summaryrefslogtreecommitdiff
path: root/numpy/core/_methods.py
Commit message (Expand)AuthorAgeFilesLines
* 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