Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

How to count a consecutive series of positive or negative values in a column in python

a = [0,0,1,1,1,0,0,1,0,1,1]
b = [0,0,0,0,0,0,0,0,0,0,0]

for i in range(len(a)):
    if a[i] == 1:
        b[i] = b[i-1] + 1
    else:
        b[i] = 0
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #count #consecutive #series #positive #negative #values #column #python
ADD COMMENT
Topic
Name
8+5 =