Assuming I have a numpy array like: [1,2,3,4,5,6] and another array: [0,0,1,2,2,1] I want to sum the items in the first array by group (the second array) and obtain n-groups results in group number order (in this case the result would be [3, 9, 9]). How do I do this in numpy?
|
|
There's more than one way to do this, but here's one way:
You can vectorize things so that there's no for loop at all, but I'd recommend against it. It becomes unreadable, and will require a couple of 2D temporary arrays, which could require large amounts of memory if you have a lot of data. Edit: Here's one way you could entirely vectorize. Keep in mind that this may (and likely will) be slower than the version above. (And there may be a better way to vectorize this, but it's late and I'm tired, so this is just the first thing to pop into my head...) However, keep in mind that this is a bad example... You're really better off (both in terms of speed and readability) with the loop above...
|
|||||||||||
|
|
I know this question is pretty old, but I thought I'd through in my two cents. This is a vectorized method of doing this sum based on the implementation of numpy.unique. According to my timings it is up to 500 times faster than the loop method and up to 100 times faster than the histogram method.
|
|||
|
|
|
If the groups are indexed by consecutive integers, you can abuse the
This will avoid any Python loops. |
|||
|
|
|
A pure python implementation:
|
|||
|
|