[Numpy-discussion] A unique function...

Pierre GM pgmdevlist at gmail.com
Tue Mar 27 18:08:56 EDT 2007


Zach,
> There's unique and unique1d, but these don't output the number of
> occurences.
> There's also bincount, which outputs the number of each element, but
> includes zeros for non-present elements and so could be problematic
> for certain data.

Well, I found it anyway. As I was pretty sure it was a private function, I 
grep on 'def _' | sed '/__/' and find it in scipy.stats.morestats: it's the 
find_repeat function.
Note that I could probably built one with a combo unique1d/setmember1d.
Thanks nevertheless.



More information about the NumPy-Discussion mailing list