How to find consecutive positive, negative and zeroes in a numpy array? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to find consecutive positive, negative and zeroes in a numpy array?

I use the following function in order to find the consecutive negative and positive numbers, now I also want to add a condition that gets the consecutive zeros as well. How can I do that? def consecutive_counts(arr): ''' Returns number of consecutive negative and positive numbers arr = np.array negative = consecutive_counts()[0] positive = consecutive_counts()[1] ''' pos = arr > 0 # is used to Compute indices that are non-zero in the flattened version of arr idx = np.flatnonzero(pos[1:] != pos[:-1]) count = np.concatenate(([idx[0]+1], idx[1:] - idx[:-1], [arr.size-1-idx[-1]])) negative = count[1::2], count[::2] positive = count[::2], count[1::2] if arr[0] < 0: return negative else: return positive thanks :)

19th Sep 2019, 1:58 PM
Dariush Shiri
Dariush Shiri - avatar
1 Answer
0
Solved it :)
19th Sep 2019, 8:23 PM
Dariush Shiri
Dariush Shiri - avatar