Hello,
I have some data which shows if an event occured per month.
Events | 202301 | 202302 | 202303 | 202304 | 202305 | 202306 |
a | 1 | 1 | 0 | 0 | 1 | 1 |
b | 1 | 1 | 1 | 1 | 0 | 0 |
c | 0 | 0 | 0 | 1 | 1 | 1 |
d | 1 | 0 | 1 | 0 | 1 | 0 |
I want to count the events which occurred 3 or more times consecutively. So I want to get this
Events | More than 3 consecutive events? | count |
b | yes | 4 |
c | yes | 3 |
Not sure how I should do this in FME. Can someone help me?
Thank you!