summaryrefslogtreecommitdiff
path: root/numpy/ma
Commit message (Expand)AuthorAgeFilesLines
...
| * | BUG: ensure masked array comparison with regular void works.Marten van Kerkwijk2017-02-272-25/+25
| * | BUG: MaskedArray __eq__ wrong for masked scalar, multi-d recarrayMarten van Kerkwijk2017-02-272-73/+155
* | | BUG: fix ma.median for empty ndarraysJulian Taylor2017-02-272-3/+10
|/ /
* | MAINT: replace len(x.shape) with x.ndimEric Wieser2017-02-242-7/+7
* | BUG: Fix asanyarray, workaround #8666Eric Wieser2017-02-221-3/+5
* | BUG: Look up methods on MaskedArray in _frommethodShota Kawabuchi2017-02-222-14/+19
* | MAINT: Be specific about where AxisError is raisedEric Wieser2017-02-202-7/+7
* | MAINT: Use normalize_axis_index in all python axis checkingEric Wieser2017-02-203-17/+17
* | Merge pull request #8594 from eric-wieser/MaskedArray.__setitem__Marten van Kerkwijk2017-02-202-1/+8
|\ \
| * | BUG: Fix #8510, making MaskedArray.__setitem__ workEric Wieser2017-02-202-1/+8
* | | Merge pull request #8645 from eric-wieser/ma-use-getmaskMarten van Kerkwijk2017-02-191-16/+15
|\ \ \
| * | | MAINT: Use getmaskarrayEric Wieser2017-02-091-2/+1
| * | | MAINT: Use getmask where possibleEric Wieser2017-02-091-14/+14
* | | | MAINT: Remove __setslice__ and __getslice__Eric Wieser2017-02-092-25/+0
|/ / /
* | | MAINT: remove ma out= workaroundJulian Taylor2017-02-061-4/+0
* | | BUG Ensure that operations on MaskedArray return any output given.Marten van Kerkwijk2017-02-012-4/+16
* | | BUG: Fix loss of dimensionality of np.ma.masked in ufuncEric Wieser2017-01-202-2/+27
* | | BUG: fix wrong masked median for some special casesJulian Taylor2017-01-172-6/+35
| |/ |/|
* | TST: extend ma.median testing and fix inconsistent out returnJulian Taylor2016-12-252-10/+63
* | BUG: fixed failure of np.ma.median for 1-D even arrays.Marten van Kerkwijk2016-12-232-4/+9
* | BUG: handle unmasked NaN in ma.median like normal medianJulian Taylor2016-12-122-10/+228
* | DEP: Make a == None and a != None compare element-wise.Charles Harris2016-11-211-12/+11
|/
* ENH: Deprecation warnings for `/` integer division when running python -3saurabh2016-11-011-1/+1
* BUG: Fix (and test) np.ma.convolve for raw listsEric Wieser2016-10-192-2/+12
* DOC: correct ma.convolve docstrings, and add the feature to the release notesEric Wieser2016-10-191-2/+5
* API: Rename contagious to propagate_maskEric Wieser2016-10-192-12/+11
* ENH: Add ma.convolve and ma.correlate for #6458Eric Wieser2016-10-192-4/+86
* Merge pull request #8142 from ahaldane/ma_mean_scalarCharles Harris2016-10-142-3/+25
|\
| * BUG: np.ma.mean and var should return scalar if no maskAllan Haldane2016-10-132-3/+25
* | Merge pull request #8103 from mattip/pypy-fixesNathaniel J. Smith2016-10-081-3/+3
|\ \
| * | ENH: either TypeError or ValueError can be raisedMatti Picus2016-10-011-3/+3
| |/
* | BUG: Fix broken pickle in MaskedArray when dtype is object (#8122)Raghav RV2016-10-062-18/+20
* | MAINT: Add deprecation warning to multi-field views/assignmentAllan Haldane2016-09-241-2/+4
|/
* BUG: fix np.ma.median with only one non-masked valueLoïc Estève2016-09-072-2/+10
* TST: Add ma.median tests for valid axis.Charles Harris2016-09-051-0/+32
* BUG: Fix numpy.ma.median for various things.Charles Harris2016-09-051-8/+11
* BUG: Fixes return for np.ma.count if keepdims is True and axis is NoneMichael Seifert2016-09-052-2/+11
* TST: Add tests for stacklevel in warnings and "ignore" filters.Sebastian Berg2016-09-021-4/+4
* ENH: Add stacklevel to all (or almost all) our function callsSebastian Berg2016-09-023-5/+6
* MAINT: Spell out with and without in ma test functionsSebastian Berg2016-09-022-16/+16
* ENH: Masked array simplify copying back of unchanged valuesSebastian Berg2016-09-021-6/+1
* TST: Use new warnings context manager in all testsSebastian Berg2016-09-025-121/+139
* BUG: Suppress common NaT warningsSebastian Berg2016-09-021-3/+5
* BUG: Fixed masked array behavior for scalar inputs to np.ma.atleast_*dJoseph Fox-Rabinovitz2016-08-242-48/+129
* Merge pull request #7912 from mattip/pypy-fixes2Charles Harris2016-08-151-1/+2
|\
| * ENH: skip or avoid gc/objectmodel differences btwn pypy and cpythonmattip2016-08-151-1/+2
* | BUG: modified ndim condition to use masked_arrayskwbc2016-08-071-1/+1
* | BUG: fix for issue#7835 (ma.median of 1d)Shota Kawabuchi2016-08-072-8/+46
|/
* DOC: Docstring capitalization/sentence fixes in numpy/ma/core.py.Charles Harris2016-08-031-7/+7
* BUG: construct ma.array from np.array which contains paddingAllan Haldane2016-08-032-15/+56