Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: missingdata: Make PyArray_Converter and PyArray_OutputConverter safer ↵ | Mark Wiebe | 2011-08-27 | 3 | -4/+28 |
| | | | | | | | | for legacy code These functions now reject inputs with NA, and there are alternative functions PyArray_AllowNAConverter and PyArray_OutputAllowNAConverter that functions should use when they intend to support NA. | ||||
* | DOC: missingdata: Add a mention of the design NEP, and masks vs bitpatterns | Mark Wiebe | 2011-08-27 | 1 | -0/+8 |
| | |||||
* | DOC: missingdata: Updates from pull request feedback | Mark Wiebe | 2011-08-27 | 2 | -22/+28 |
| | | | | From Chris Jordan-Squire | ||||
* | DOC: missingdata: Updates based on pull request feedback | Mark Wiebe | 2011-08-27 | 1 | -10/+34 |
| | | | | From github users xscript and 87. | ||||
* | DOC: missingdata: Also show what assigning a non-NA value does in each case | Mark Wiebe | 2011-08-27 | 1 | -0/+23 |
| | | | | Thanks to chebee7i for the feedback | ||||
* | DOC: missingdata: Add introductory documentation for NA-masked arrays | Mark Wiebe | 2011-08-27 | 4 | -0/+253 |
| | |||||
* | DOC: missingdata: Some tweaks to the NA mask documentation | Mark Wiebe | 2011-08-27 | 1 | -17/+29 |
| | |||||
* | DOC: missingdata: Add example of a C-API function supporting NA masks | Mark Wiebe | 2011-08-27 | 4 | -55/+387 |
| | |||||
* | DOC: missingdata: Documenting C API for NA-masked arrays | Mark Wiebe | 2011-08-27 | 3 | -0/+240 |
| | |||||
* | DOC: nditer: Document NpyIter_IsFirstVisit function | Mark Wiebe | 2011-08-27 | 1 | -0/+22 |
| | |||||
* | ENH: missingdata: Create count_reduce_items function | Mark Wiebe | 2011-08-27 | 1 | -0/+1 |
| | | | | | | | This function either cheaply returns the product of the sizes of all the reduction axes, or counts the number of items which will be used in a reduction operation when skipna is True. Its purpose is to make it easy to do functions like np.mean and np.std. | ||||
* | ENH: missingdata: Rewrite PyArray_Concatenate to work with NA masks | Mark Wiebe | 2011-08-27 | 1 | -12/+14 |
| | | | | | It should also have less memory usage for heterogeneous inputs, because it no longer makes extra copies in that case. | ||||
* | DOC: missingdata: Add some NA mask info to the documentation | Mark Wiebe | 2011-08-27 | 2 | -50/+214 |
| | |||||
* | DOC: nditer: Add details about why 'readonly' is the operand default | Mark Wiebe | 2011-08-25 | 1 | -1/+5 |
| | |||||
* | DOC: nditer: Tweaks to the tutorial based on feedback from Chris | Mark Wiebe | 2011-08-25 | 1 | -25/+31 |
| | |||||
* | DOC: nditer: Add links to the nditer introductory doc to make it more ↵ | Mark Wiebe | 2011-08-25 | 2 | -1/+6 |
| | | | | discoverable | ||||
* | DOC: nditer: Finish up the nditer walkthrough with a Cython example | Mark Wiebe | 2011-08-25 | 2 | -37/+185 |
| | |||||
* | DOC: nditer: Add tutorial-style material covering more than one operand | Mark Wiebe | 2011-08-25 | 1 | -15/+243 |
| | |||||
* | DOC: nditer: Write tutorial-style introduction covering single-array iteration | Mark Wiebe | 2011-08-25 | 1 | -0/+329 |
| | |||||
* | DOC: Add tutorial for writing numpy ufunc extensions. | Chris Jordan-Squire | 2011-08-22 | 1 | -31/+31 |
| | |||||
* | Py3K compliant, extra comments added | Chris Jordan-Squire | 2011-08-22 | 1 | -21/+50 |
| | |||||
* | style changes and bugs removed from docs | Chris Jordan-Squire | 2011-08-22 | 1 | -39/+63 |
| | |||||
* | ENH: Docs now Py3k compliant | Chris Jordan-Squire | 2011-08-22 | 1 | -20/+126 |
| | |||||
* | Changed to follow PEP 7 | Chris Jordan-Squire | 2011-08-22 | 1 | -154/+144 |
| | |||||
* | DOCS: New ufunc creation docs | Chris Jordan-Squire | 2011-08-22 | 4 | -182/+900 |
| | |||||
* | Merge branch 'deprecate_array_field_access' | Mark Wiebe | 2011-07-26 | 1 | -1/+26 |
|\ | |||||
| * | DOC: core: Document the PyArray_SetBaseObject function | Mark Wiebe | 2011-07-22 | 1 | -1/+26 |
| | | |||||
* | | DOC: datetime: Update the docs to reflect busday_count change | Mark Wiebe | 2011-07-19 | 1 | -2/+1 |
| | | |||||
* | | DOC: datetime: hyperlink busday_count and is_busday functions in datetime doc | Mark Wiebe | 2011-07-19 | 1 | -2/+2 |
| | | |||||
* | | DOC: datetime: Add additional tutorial information. | Steve R. Hastings | 2011-07-19 | 1 | -27/+95 |
|/ | |||||
* | DOC: fix build issues (with latex or newest sphinx) | Pauli Virtanen | 2011-07-15 | 3 | -14/+9 |
| | |||||
* | DOC: core: Document the mask-based nditer flags and new inline mask functions | Mark Wiebe | 2011-07-11 | 3 | -10/+249 |
| | |||||
* | ENH: core: Add np.copyto, PyArray_MaskedMoveInto, PyArray_MaskedCopyInto | Mark Wiebe | 2011-07-08 | 2 | -0/+15 |
| | | | | | | | | These functions expose masked copying routines, with and without handling of overlapping data. Also deprecated the np.putmask and PyArray_PutMask functions, because np.copyto supercedes their functionality. This will need to be discussed on the list during the pull request review. | ||||
* | DOC: c-api: Update to reflect array flag namespace change | Mark Wiebe | 2011-07-06 | 4 | -170/+176 |
| | |||||
* | DOC: Document the ufunc 'where=' parameter and the NpyAuxData C API mechanism | Mark Wiebe | 2011-07-06 | 2 | -0/+99 |
| | |||||
* | DOC: datetime: Split the date/time units into two separate tables | Mark Wiebe | 2011-07-01 | 1 | -7/+24 |
| | |||||
* | DOC: datetime: Updates based on Chuck's feedback | Mark Wiebe | 2011-07-01 | 1 | -6/+16 |
| | |||||
* | DOC: datetime: Start a draft of introductory datetime documentation | Mark Wiebe | 2011-07-01 | 2 | -0/+262 |
| | |||||
* | DOC: adjust html css, and stub file generation | Pauli Virtanen | 2011-06-29 | 2 | -4/+13 |
| | |||||
* | DOC: list routines for dealing with raw binary files | Pauli Virtanen | 2011-06-25 | 1 | -0/+8 |
| | |||||
* | DOC: dtype-struct: Document the changes to struct dtypes | Mark Wiebe | 2011-06-22 | 1 | -38/+56 |
| | |||||
* | ENH: Add the polynomial module to the documentation. | Charles Harris | 2011-06-20 | 4 | -3/+33 |
| | | | | | | | | | | | Also: 1. Note that the polynomial package is preferred over poly1d. 2. Remove deprecation of mapparms in __init__.py as it interferes with the documention of the method of the same name. This is probably safe as it is unlikely to be used yet. 3. Make some improvements to the documentation in polytemplate. | ||||
* | STY: datetime-feedback: Rename np.busdaydef -> np.busdaycalendar | Mark Wiebe | 2011-06-15 | 1 | -1/+1 |
| | | | | | Also rename the busdaydef parameters to busdaycal parameters. This change was motivated by Chuck's code review feedback. | ||||
* | DOC: datetime-bday: Document the datetime business day functions | Mark Wiebe | 2011-06-14 | 2 | -0/+21 |
| | |||||
* | DOC: Document the new keyword arguments for ufuncs | Mark Wiebe | 2011-04-22 | 1 | -0/+39 |
| | |||||
* | DOC: Improve the documentation about type promotion | Mark Wiebe | 2011-04-22 | 2 | -7/+49 |
| | |||||
* | DOC: Changes required to the configuration to start building docs with ↵ | Michael Droettboom | 2011-04-02 | 1 | -5/+24 |
| | | | | matplotlib's plot_directive. Requires that matplotlib have the new "merged" plot_directive. (#1074) | ||||
* | DOC: The nditer exposure wasn't linked correctly | Mark Wiebe | 2011-03-22 | 2 | -1/+1 |
| | |||||
* | API: Rename 'niter' to 'nop' in the nditer | Mark Wiebe | 2011-03-17 | 1 | -24/+24 |
| | | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better. | ||||
* | DOC: Fill in more of the nditer docs | Mark Wiebe | 2011-03-16 | 1 | -0/+1 |
| |