summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
AgeCommit message (Expand)AuthorFilesLines
2018-02-14BUG: Revert sort optimization in np.unique.Charles Harris1-17/+20
2018-02-03MAINT: Use AxisError in swapaxesEric Wieser1-3/+5
2018-01-31MAINT: Make it clear that counts and inverse depend only on the maskEric Wieser1-2/+2
2018-01-31DOC: Use a bulleted list to show the outputs of `unique`, for clarityEric Wieser1-4/+5
2018-01-31MAINT: Remove special-casing of empty arrays in unique_1dEric Wieser1-16/+8
2018-01-31MAINT: Remove messy handling of output tuple in np.uniqueClaudio Freire1-31/+33
2018-01-18Merge pull request #10342 from anaskhan96/union1d-fixCharles Harris1-1/+1
2018-01-17DOC: Fix version added labels in numpy.uniqueSamuel Jackson1-0/+4
2018-01-09BUG: concatenation using axis=None in union1dAnas Khan1-1/+1
2018-01-08BUG: fixing flattening of arrays in `union1d` in arraysetops.pyAnas Khan1-1/+1
2017-11-18Merge pull request #10021 from eric-wieser/no-dtype-bool-reprAllan Haldane1-6/+6
2017-11-18ENH: Make `np.in1d()` work for unorderable object arrays (#9999)Jörg Döpfert1-2/+8
2017-11-13ENH: don't show boolean dtype, as it is impliedEric Wieser1-6/+6
2017-08-05MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser1-2/+2
2017-07-28MAINT: Make `setxor1d' a bit clearer and speed it upwufangjie1-5/+1
2017-07-27make `setxor1d' a bit clear and speed upwufangjie1-2/+3
2017-05-20BUG: set default type for empty index array to `numpy.intp` (#9142)Konrad Kapp1-2/+2
2017-05-07DOC: fix docstring for np.isinStephan Hoyer1-0/+1
2017-05-05ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht1-3/+99
2016-11-13Added axis argument to numpy.uniquemartinosorb1-11/+73
2016-10-27BUG: return subclasses from ediff1dMattHarrigan1-13/+12
2016-10-26ENH: fast track default kwargs for ediff1dMattHarrigan1-0/+4
2016-10-18ENH: performance improvement to ediff1dMattHarrigan1-14/+27
2015-07-01DOC: Fix docstring warnings in documetation generation.Charles Harris1-2/+4
2015-05-07BUG: setdiff1d return dtypeChristian Brodbeck1-6/+4
2015-03-01Merge pull request #5619 from jaimefrio/unique_docstringJulian Taylor1-3/+4
2015-03-01DOC: Describe return_counts keyword in np.unique docstringJaime Fernandez1-3/+4
2015-01-25ENH: speed-up in1d replacing sorting with fancy indexingjaimefrio1-3/+4
2014-10-15Add examples for intersect1d and union1d of more than two arrays.Christian Brueffer1-0/+10
2014-09-23BUG: np.unique with chararray + inverse_indexCJ Carey1-1/+1
2014-08-31DOC: warn about using a set with 'in1d'.Patrick Peglar1-0/+4
2014-08-27ENH: Speed up `unique` with `return_inverse`jaimefrio1-2/+3
2014-07-31STY: Make files in numpy/lib PEP8 compliant.Charles Harris1-7/+7
2014-07-31MAINT: Fixes for problems in numpy/lib revealed by pyflakes.Charles Harris1-4/+7
2014-06-06BUG: Correct behavior for lists of tuples in unique, closes #4785jaimefrio1-7/+1
2014-04-05ENH: add a 'return_counts=' keyword argument to `np.unique`jaimefrio1-26/+42
2014-02-21BUG: Fixes #2799jaimefrio1-2/+1
2013-04-08ENH: add `invert` parameter to numpy.in1d().Julien Phalip1-7/+26
2013-04-062to3: Apply `print` fixer.Charles Harris1-1/+1
2013-03-282to3: Use absolute imports.Charles Harris1-1/+1
2013-03-012to3: Put `from __future__ import division in every python file.Charles Harris1-0/+3
2012-12-08BUG: Fix regression for in1d with non-array inputSebastian Berg1-0/+4
2012-07-07DOC: merge doc wiki edits. A number of small edits in linalg and lib.Ralf Gommers1-8/+8
2012-03-30BUG: ticket #2063, make unique return consistent index.Bryan Van de Ven1-3/+6
2011-08-27ENH: missingdata: Implemented boolean assignment, working with NA masksMark Wiebe1-1/+1
2011-05-29ENH: speed up in1d() in the case of ar1 >> ar2. Closes #1603.rgommers1-2/+10
2011-03-11DEP: remove unique1d, setmember1d and intersect1d_nu.rgommers1-76/+2
2009-10-25Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt1-4/+4
2009-10-02Docstring update: libPauli Virtanen1-45/+91
2009-10-02Docstring updates, part 1Pauli Virtanen1-11/+28