summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* ENH: missingdata: Adding NA support to various methodsMark Wiebe2011-08-272-73/+134
* BUG: missingdata: Negative strides bug in USE_MASKNA nditer modeMark Wiebe2011-08-272-3/+2
* ENH: missingdata: Make NA ufuncs work with output parameters properlyMark Wiebe2011-08-272-7/+102
* BUG: missingdata: Was adding MASKNA even when not desired currentlyMark Wiebe2011-08-272-2/+2
* ENH: missingdata: Add skipna parameters to sum, prod, etcMark Wiebe2011-08-273-46/+92
* ENH: missingdata: Another NA array formatting tweakMark Wiebe2011-08-271-2/+9
* ENH: missingdata: Try to get basic NA printing to be okMark Wiebe2011-08-271-16/+41
* ENH: missingdata: Make the ndarray.take function work with NA masksMark Wiebe2011-08-275-48/+286
* ENH: missingdata: Fix construction of maskna array with all NAsMark Wiebe2011-08-272-1/+7
* ENH: missingdata: Make reduction with skipna=True work better in some casesMark Wiebe2011-08-272-49/+150
* ENH: missingdata: Some tests/fixes for reduce method with skipna=TrueMark Wiebe2011-08-272-7/+35
* ENH: missingdata: Get ufunc reduce skipna=False working betterMark Wiebe2011-08-273-26/+69
* ENH: missingdata: Fix an iterator MASKNA bug, fill in more missing stuffMark Wiebe2011-08-279-65/+274
* ENH: missingdata: Fix the remaining scipy errorsMark Wiebe2011-08-272-1/+7
* ENH: missingdata: Change things to help scipy pass its testsMark Wiebe2011-08-277-102/+134
* ENH: missingdata: Change boolean indexing to broadcast to the left manuallyMark Wiebe2011-08-276-30/+80
* ENH: missingdata: Fix up more NA mask indexing, make things work in 2DMark Wiebe2011-08-276-29/+255
* ENH: Work in progress on arr.reshape, other misc changesMark Wiebe2011-08-277-117/+416
* DOC: ufunc: Document the 'axis=' improvments to reduction functionsMark Wiebe2011-08-272-24/+57
* ENH: ufunc: Add tests for zero-sized array reductionsMark Wiebe2011-08-272-7/+14
* ENH: umath: Make sum, prod, any, or functions use the .reduce method directlyMark Wiebe2011-08-278-96/+221
* TST: ufunc: Tweak ma test to have a good output parameter, disable crashing N...Mark Wiebe2011-08-272-3/+3
* ENH: ufunc: Rewrite PyUFunc_Reduce to be more general and easier to adapt to ...Mark Wiebe2011-08-2712-499/+600
* API: nditer: Rename NpyIter_GetMaskNAIndices to NpyIter_GetMaskNAIndexArrayMark Wiebe2011-08-273-4/+4
* ENH: ufunc: Split Reduce and Accumulate apart so that adding NA support is ea...Mark Wiebe2011-08-272-216/+447
* ENH: missingdata: Write function for reducing the NA mask arrayMark Wiebe2011-08-275-83/+173
* ENH: missingdata: Improve some raw iteration methodsMark Wiebe2011-08-275-97/+211
* ENH: missingdata: Progress towards supporting ufunc reduce with NA masksMark Wiebe2011-08-279-72/+219
* ENH: missingdata: Got masked element-wise ufuncs working in preliminary fashionMark Wiebe2011-08-277-70/+159
* ENH: nditer: Allow a virtual mask of ones for non-masked USE_MASKNA operandsMark Wiebe2011-08-273-16/+86
* ENH: missingdata: Make the nditer USE_MASKNA mode work with bufferingMark Wiebe2011-08-273-9/+94
* TST: missingdata: Add test for buffered MASKNA iterationMark Wiebe2011-08-271-4/+21
* ENH: missingdata: Some tests for MASKNA iteration in PythonMark Wiebe2011-08-276-8/+62
* ENH: missingdata: Fill in buffered NAMASK nditer, add maskna= to zeros, empty...Mark Wiebe2011-08-2714-57/+161
* TST: missingdata: Move maskna array tests to their own fileMark Wiebe2011-08-272-326/+333
* TST: missingdata: Cover some more unmasking assignment casesMark Wiebe2011-08-271-0/+40
* BUG: missingdata: Add deallocation of the NA maskMark Wiebe2011-08-272-1/+8
* ENH: missingdata: Fill in view function, add many tests for NA view functionsMark Wiebe2011-08-276-41/+325
* ENH: missingdata: Write NA mask support into PyArray_CopyIntoMark Wiebe2011-08-272-8/+313
* ENH: core: Revert optimistic use of PyNumber_Index for indexingMark Wiebe2011-08-273-7/+13
* TST: core: Regression test of boolean indexing was invalid, fixed itMark Wiebe2011-08-272-3/+4
* BUG: ma: Fix a bug in numpy.ma hardmasks, exposed by the boolean indexing rew...Mark Wiebe2011-08-272-3/+3
* ENH: missingdata: Implemented boolean assignment, working with NA masksMark Wiebe2011-08-279-44/+472
* ENH: missingdata: Rewrote boolean indexing to support NA masksMark Wiebe2011-08-279-24/+477
* ENH: missingdata: Get the NA mask working with slice indexingMark Wiebe2011-08-274-94/+182
* ENH: missingdata: In progress making slicing work with NA masksMark Wiebe2011-08-274-2/+88
* ENH: missingdata: Finish the initial implementation of numpy.isnaMark Wiebe2011-08-273-10/+80
* ENH: missingdata: In progress exposing USE_MASKNA to Python numpy.nditerMark Wiebe2011-08-274-38/+246
* ENH: missingdata: More progress towards NPY_ITER_USE_MASKNA flag supportMark Wiebe2011-08-273-8/+61
* ENH: missingdata: Part way through supporting the NPY_ITER_USE_MASKNA flagMark Wiebe2011-08-277-50/+130