Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: clarify numpy version for removal, document sed script better. | Charles Harris | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | STY: Fix up the 2.0 (1.7) release notes. | Charles Harris | 2012-02-04 | 1 | -5/+11 |
| | |||||
* | DEP: Deprecate the old_defines.h header and the macros therein. | Charles Harris | 2012-02-04 | 1 | -5/+16 |
| | | | | | | The old_defines.h file is no longer included in ndarrayobject.h, but instead in the npy_deprecated_api.h file. It is no longer part of the numpy build and its deprecation is noted in the release notes. | ||||
* | DOC: numpybook - Replace macro names in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -26/+26 |
| | |||||
* | DOC: Replace references to macros in old_defines with new. | Charles Harris | 2012-02-04 | 6 | -133/+21 |
| | | | | | Also remove swig support for numpy < 1 from numpy.i since it expects the old macros. | ||||
* | STY: Replace more found macros in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -2/+2 |
| | |||||
* | DOC: Document macro changes in release notes. | Charles Harris | 2012-01-27 | 1 | -0/+9 |
| | |||||
* | DOC: Improve numpy reference documentation of polynomial classes. | Charles Harris | 2012-01-09 | 3 | -16/+26 |
| | | | | | Add more explanation of what happens in polynomial substitution and also of its use in casting between types. Clean up some rst glitches. | ||||
* | DOC: Move removing deprecated imports note to deprecation section. | Charles Harris | 2012-01-09 | 1 | -2/+2 |
| | |||||
* | DOC: Document new polynomial package functionality in the release notes. | Charles Harris | 2012-01-09 | 1 | -1/+22 |
| | |||||
* | DOC: Document the use of the polynomial convenience classes. | Charles Harris | 2012-01-09 | 1 | -10/+337 |
| | |||||
* | DOC: Lower toc number of levels. | Charles Harris | 2012-01-09 | 1 | -1/+1 |
| | |||||
* | DOC: Add version added to some of the polynomial package modules. | Charles Harris | 2012-01-09 | 7 | -0/+14 |
| | |||||
* | BUG: Fix up links to classes. | Charles Harris | 2012-01-09 | 6 | -12/+11 |
| | | | | | The Sphinx markup was incorrect the documentation to the polynomial convenience classes wasn't being generated. | ||||
* | DOC: Rearrange the polynomial documents. | Charles Harris | 2012-01-09 | 9 | -14/+567 |
| | | | | | This is the first step in cleaning up the polynomial documentation and writing an instructional section on the convenience classes. | ||||
* | FIX: Add release notes, use inverse cdf method for non-uniform | Chris Jordan-Squire | 2011-12-17 | 1 | -1/+3 |
| | | | | | sampling with replacement, change searchsorted to use side='right', and regenerate mtrand.c. | ||||
* | FIX: Changed named to choice, reverted other changes. | Chris Jordan-Squire | 2011-12-17 | 1 | -0/+3 |
| | |||||
* | ENH: New sample function, bugs in tests fixed | Chris Jordan-Squire | 2011-12-16 | 1 | -0/+1 |
| | |||||
* | DOC: describe required version of GCC in MinGW on Windows in release doc. | Ralf Gommers | 2011-10-04 | 1 | -1/+3 |
| | |||||
* | DOC: add note on formatting math to HOWTO_DOCUMENT. | Ralf Gommers | 2011-09-27 | 1 | -0/+11 |
| | |||||
* | STY: Fix spelling and reword text. | Charles Harris | 2011-09-17 | 1 | -8/+8 |
| | |||||
* | DOC: numpydoc.py was still using old, scipy trac url in docstring | Valentin Haenel | 2011-09-17 | 1 | -1/+1 |
| | |||||
* | DOC: mention numpydoc in numpy conventions | Valentin Haenel | 2011-09-17 | 1 | -0/+20 |
| | | | | | Explain why it's good to use numpydoc and link to both numpydoc and some installation and usage instructions. | ||||
* | DOC: Add note about <ufunc>.reduce evaluation order | Mark Wiebe | 2011-08-31 | 1 | -0/+6 |
| | |||||
* | 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: Mention the update to np.all and np.any in the release notes | Mark Wiebe | 2011-08-27 | 1 | -1/+3 |
| | |||||
* | ENH: missingdata: Make numpy.all follow the NA && False == False rule | Mark Wiebe | 2011-08-27 | 1 | -1/+1 |
| | |||||
* | 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 | 5 | -0/+254 |
| | |||||
* | 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 |
| | |||||
* | ENH: missingdata: Add maskna= flag to np.eye constructor | Mark Wiebe | 2011-08-27 | 1 | -3/+1 |
| | |||||
* | ENH: missingdata: Add skipna=, keepdims= parameters to methods | Mark Wiebe | 2011-08-27 | 1 | -4/+2 |
| | | | | | | Also fix some memory leaks, improve some type resolution code. The methods still have some issues with array subtypes that needs working through. | ||||
* | ENH: missingdata: Add wheremask to PyArray_ContainsNA | Mark Wiebe | 2011-08-27 | 1 | -2/+3 |
| | | | | | | Use this to make masked assignment just check the elements its copying for NA, so that the source array can have NAs, just not where the mask says. | ||||
* | DOC: Add info to the release notes about the full boolean indexing change | Mark Wiebe | 2011-08-27 | 1 | -0/+8 |
| | |||||
* | DOC: nditer: Document NpyIter_IsFirstVisit function | Mark Wiebe | 2011-08-27 | 1 | -0/+22 |
| | |||||
* | NEP: missingdata: Some fixes and updates to the NEP | Mark Wiebe | 2011-08-27 | 1 | -5/+17 |
| | |||||
* | BUG: ufunc: Fix bug in multi-dimensional reduction without a unit | Mark Wiebe | 2011-08-27 | 1 | -0/+2 |
| | |||||
* | DOC: Tweak to the release notes | Mark Wiebe | 2011-08-27 | 1 | -3/+4 |
| | |||||
* | DOC: Small tweak to release notes | Mark Wiebe | 2011-08-27 | 1 | -2/+2 |
| | |||||
* | TST: missingdata: Finish up NA mask tests for np.std and np.var | Mark Wiebe | 2011-08-27 | 1 | -2/+18 |
| | |||||
* | 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: Move some of the refactored reduction code into the API | Mark Wiebe | 2011-08-27 | 1 | -1/+19 |
| | | | | | | | Doing this so that it can be used both in multiarray and umath, to make writing new reduction operations generally easier. Also made PyArray_Squeeze work with NA-masked arrays. | ||||
* | ENH: missingdata: Change default to create NA-mask when NAs are in lists | Mark Wiebe | 2011-08-27 | 1 | -7/+29 |
| | | | | | Also adjust the repr to drop maskna=True when this rule will enable it automatically. | ||||
* | ENH: missingdata: trying some more functions to see how they treat NAs | Mark Wiebe | 2011-08-27 | 2 | -5/+11 |
| | |||||
* | ENH: missingdata: Add nastr= parameter to np.set_printoptions() | Mark Wiebe | 2011-08-27 | 1 | -11/+15 |
| |