I have a column in Pandas which contains booleans and want to count thr rows since the last True value, something like this:
a b
False 0
True 0
False 1
False 2
False 3
True 0
False 1
True 0
I could do it via a loop but it seems there must be a better way