Re: [Numpy-discussion] Efficient way of binning points and, applying functions to these groups

2012-12-26 Thread Eric Emsellem
Thanks Ralf! this module looks great in fact. I didn't know it existed, and in fact It is only available in Scipy 0.11.0 (had to install from source since an Ubuntu 12.04 bin is not available). Too bad that the User-defined function only accepts one single array. If that function should take m

Re: [Numpy-discussion] Efficient way of binning points and applying functions to these groups

2012-12-26 Thread Ralf Gommers
On Wed, Dec 26, 2012 at 10:09 AM, Eric Emsellem wrote: > Hi! > > I am looking for an efficient way of doing some simple binning of points > and then applying some functions to points within each bin. > That's exactly what scipy.stats.binned_statistic does: http://docs.scipy.org/doc/scipy-dev/refe

Re: [Numpy-discussion] Efficient way of binning points and applying functions to these groups

2012-12-26 Thread Daπid
This looks like the perfect work for cython. It it's great opp optimizing loops. Another option is the new Numba, an automatic compiler. David. El 26/12/2012 10:09, "Eric Emsellem" escribió: > Hi! > > I am looking for an efficient way of doing some simple binning of points > and then applying so

[Numpy-discussion] Efficient way of binning points and applying functions to these groups

2012-12-26 Thread Eric Emsellem
Hi! I am looking for an efficient way of doing some simple binning of points and then applying some functions to points within each bin. I have tried several ways, including crude looping over the indices, or using digitize (see below) but I cannot manage to get it as efficient as I need it to