Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fixing basic build errors | Uddeshya Singh | 2018-07-01 | 1 | -2/+2 | |
| | | ||||||
| * | DOC: update return type description for average | Uddeshya Singh | 2018-06-28 | 1 | -6/+13 | |
| | | ||||||
* | | Merge pull request #11637 from eric-wieser/simplify-angle | Charles Harris | 2018-07-31 | 1 | -8/+11 | |
|\ \ | | | | | | | ENH: np.angle: Remove unnecessary multiplication, and allow subclasses to pass through | |||||
| * | | DOC: Add versionchanged about subclasses | Eric Wieser | 2018-07-31 | 1 | -0/+3 | |
| | | | ||||||
| * | | ENH: np.angle: Preserve subclasses | Eric Wieser | 2018-07-30 | 1 | -1/+1 | |
| | | | ||||||
| * | | STY: Remove C-like parentheses | Eric Wieser | 2018-07-30 | 1 | -1/+1 | |
| | | | ||||||
| * | | MAINT: np.angle: Fix type of default argument to match docs | Eric Wieser | 2018-07-30 | 1 | -1/+1 | |
| | | | ||||||
| * | | MAINT: np.angle: Remove unnecessary multiplication | Eric Wieser | 2018-07-30 | 1 | -5/+5 | |
| | | | ||||||
* | | | DOC: Import maplotlib to show contourf in docs. | Heath Henley | 2018-07-27 | 1 | -0/+1 | |
| | | | ||||||
* | | | DOC: Show plot in meshgrid example. | Heath Henley | 2018-07-27 | 1 | -0/+1 | |
|/ / | ||||||
* | | BUG: Don't convert inputs to `np.float64` in digitize | Eric Wieser | 2018-07-06 | 1 | -1/+111 | |
| | | | | | | | | | | | | | | | | This converts digitize to a pure-python function that falls back on searchsorted. Performance doesn't really matter here anyway - if you care about performance, then you should just call searchsorted directly, rather than checking the order of the bins. Partially fixes gh-11022 | |||||
* | | MAINT: Move add_newdocs into core, since it only adds docs to those pieces | Eric Wieser | 2018-07-02 | 1 | -35/+1 | |
|/ | ||||||
* | Merge pull request #11347 from mattip/less-sphinx-warnings | Ralf Gommers | 2018-06-27 | 1 | -8/+9 | |
|\ | | | | | DOC: Silence many sphinx warnings | |||||
| * | fixes from review | mattip | 2018-06-24 | 1 | -8/+8 | |
| | | ||||||
| * | DOC: typos, small fixes | mattip | 2018-06-15 | 1 | -1/+2 | |
| | | ||||||
* | | HTTP -> HTTPS, and other linkrot fixes | Mike Toews | 2018-06-16 | 1 | -9/+9 | |
|/ | ||||||
* | DOC: make docstring of np.interp clearer (#11280) | Jörg Döpfert | 2018-06-08 | 1 | -2/+2 | |
| | | | | | | | | | | * update docstring of interp() * change "calculate" to "evaluate" to be consistent * remove "values" * make "data points" consistent | |||||
* | DOC: Fix doctest formatting in `rot90()` examples | Miguel Sánchez de León Peque | 2018-06-01 | 1 | -3/+2 | |
| | ||||||
* | DOC: Make doc examples using StringIO python2-3 compatible | Andras Deak | 2018-04-27 | 1 | -2/+2 | |
| | ||||||
* | Merge pull request #10199 from chunweiyuan/quantile | Stephan Hoyer | 2018-04-23 | 1 | -2/+108 | |
|\ | | | | | ENH: Quantile | |||||
| * | ENH: Adding np.quantile() and np.nanquantile(). #10199 | Chun-Wei Yuan | 2018-04-16 | 1 | -2/+108 | |
| | | ||||||
* | | Merge pull request #10921 from mattip/percentile-graph | Charles Harris | 2018-04-20 | 1 | -13/+16 | |
|\ \ | | | | | | | DOC: clear up warnings, fix matplotlib plot | |||||
| * | | DOC: clear up warnings, fix matplotlib plot | mattip | 2018-04-17 | 1 | -13/+16 | |
| |/ | ||||||
* | | ENH: Extend np.flip to work over multiple axes | Junjie Bai | 2018-04-17 | 1 | -13/+37 | |
|/ | | | | Closes #10847 | |||||
* | doc: fix examples in docstring for np.flip | Berend Kapelle | 2018-04-03 | 1 | -3/+0 | |
| | ||||||
* | Merge pull request #10666 from dfreese/fix/covcomplex | Charles Harris | 2018-03-16 | 1 | -1/+1 | |
|\ | | | | | BUG: fix complex casting error in cov with aweights | |||||
| * | BUG: fix complex casting error in cov with aweights | David Freese | 2018-02-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | When using cov with a complex input and with aweights specified, cov will error as a result of trying to cast a complex value into a float64. This comes about since average is used to calculate the sum of the weights from aweights. average returns the sum of weights as the same type as its result, not the weights type. For a complex input m, and any type for aweights, this would result in a complex value for fact. It appears the primary purpose of np.float64(fact) is to provide a NaN value from the divide when fact is an integer zero. This has been replaced by using numpy.divide to replicate the same behavior, but to also handle complex types. | |||||
* | | Merge pull request #10618 from eric-wieser/avoid-nontuple-indices | Marten van Kerkwijk | 2018-03-15 | 1 | -20/+22 | |
|\ \ | | | | | | | MAINT: Stop using non-tuple indices internally | |||||
| * | | MAINT: Stop using non-tuple indices internally | Eric Wieser | 2018-02-16 | 1 | -20/+22 | |
| |/ | | | | | | | | | | | By not using this type of indexing, it becomes easier for subclasses to override indexing in a way that works correctly with numpy functions. These locations were found by deprecating the behavior in question, which is deliberately not part of this commit | |||||
* | | Merge pull request #10750 from eric-wieser/percentile-graph | Charles Harris | 2018-03-15 | 1 | -0/+27 | |
|\ \ | | | | | | | DOC: Add graph showing different behaviors of np.percentile | |||||
| * | | DOC: Add graph showing different behaviors of np.percentile | Eric Wieser | 2018-03-15 | 1 | -0/+27 | |
| | | | | | | | | | | | | With thanks to @ricardoV94 for inspiring this | |||||
* | | | TST: Import abstract classes from collections.abc | Frederick Lefebvre | 2018-03-14 | 1 | -2/+7 | |
|/ / | | | | | | | | | | | | | | | Abstract collection classes accessed from the collections module have been deprecated since Python 3.3. They should be accessed through collections.abc. When run with Python 3.7, the deprecation warning cause multiple tests to fail. | |||||
* | | BUG: fix error message in numpy.select | Louis Potok | 2018-03-08 | 1 | -1/+1 | |
| | | ||||||
* | | DOC: Grammar of np.gradient docstring | Allan Haldane | 2018-03-06 | 1 | -3/+3 | |
| | | | | | | | | [ci-skip] | |||||
* | | Merge pull request #10547 from hobler/patch-1 | Charles Harris | 2018-02-28 | 1 | -1/+1 | |
|\ \ | | | | | | | DOC: Fix incorrect formula in gradient docstring. | |||||
| * | | Update function_base.py | hobler | 2018-02-08 | 1 | -1/+1 | |
| |/ | ||||||
* | | BUG/MAINT: Remove special handling of 0d arrays and scalars in interp | Eric Wieser | 2018-02-25 | 1 | -16/+3 | |
|/ | | | | | | | | | | These are now handled generically by the underlying C function This fixes the period argument for 0d arrays. Now never returns a pure-python scalar, which matches the behaviour of most of numpy. Rework of b66a200a4a1e98f1955c8a774e4ebfb4588dab5b | |||||
* | DOC: fix formatting in interp example | Zane Bradley | 2018-01-25 | 1 | -1/+2 | |
| | ||||||
* | More misc. typos | luz.paz | 2018-01-04 | 1 | -1/+1 | |
| | | | Found via `codespell` | |||||
* | Merge pull request #10241 from eric-wieser/no-repeated-percentile-checks | Charles Harris | 2018-01-01 | 1 | -16/+26 | |
|\ | | | | | MAINT: Avoid repeated validation of percentiles in nanpercentile | |||||
| * | MAINT: Avoid repeated validation of percentiles in nanpercentile | Eric Wieser | 2017-12-18 | 1 | -16/+26 | |
| | | | | | | | | | | | | Previously, this would check the percentiles were 0 <= q <= 100 on every single slice of non-reduction axes. This also pulls the division by 100 to the top level, which makes things clearer, and also reduces the size of the stack trace | |||||
* | | Documentation and misc. typos | luzpaz | 2017-12-30 | 1 | -1/+1 | |
| | | | | | | Found via `codespell` | |||||
* | | Merge pull request #10186 from eric-wieser/move_histogram | Charles Harris | 2017-12-22 | 1 | -801/+3 | |
|\ \ | | | | | | | MAINT: Move histogram and histogramdd into their own module | |||||
| * \ | Merge branch 'master' into move_histogram | Eric Wieser | 2017-12-18 | 1 | -15/+14 | |
| |\ \ | | |/ | ||||||
| * | | MAINT: Move histogram and histogramdd into their own module | Eric Wieser | 2017-12-10 | 1 | -801/+3 | |
| | | | | | | | | | | | | | | | | | | | | | 800 self-contained lines are easily enough to go in their own file, as are the 500 lines of tests. For compatibility, the names are still available through `np.lib.function_base.histogram` and `from np.lib.function_base import *` For simplicity of imports, all of the unqualified `np.` names are now qualified | |||||
* | | | ENH: fix typo | Tai-Lin Wu | 2017-12-20 | 1 | -1/+1 | |
| |/ |/| | ||||||
* | | DOC: Fixup percentile docstring, from review in gh-9213 | Eric Wieser | 2017-12-10 | 1 | -15/+14 | |
|/ | | | | Updates the two docstrings to match. | |||||
* | ENH: don't show boolean dtype, as it is implied | Eric Wieser | 2017-11-13 | 1 | -1/+1 | |
| | ||||||
* | BUG: Throw an error if too many functions are given to piecewise | Eric Wieser | 2017-10-23 | 1 | -1/+6 | |
| | | | | Especially necessary given the strange heuristics that decay the number of conditions to 1 | |||||
* | DOC: piecewise callables take 1d arrays | Eric Wieser | 2017-10-21 | 1 | -2/+2 | |
| |