I have a NumPy array 'boolarr' of boolean type. I want to count the number of elements whose values are True. Is there a NumPy or Python routine dedicated for this task? Or, do I need to iterate over the elements in my script?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
You have multiple options. Two options are the following.
Here's an example:
Of course, that is a
|
|||||||||||||
|
|
That question solved a quite similar question for me and I thought I should share : In raw python you can use sum() to count True values in a dict :
But this won't work :
Maybe this will help someone. |
|||
|