The data shown in the figure is obtained(purple line).
We want to count the number of piles of such data.
Is it possible to implement this in an event frame or in an analisis?
Best regards.
The data shown in the figure is obtained(purple line).
We want to count the number of piles of such data.
Is it possible to implement this in an event frame or in an analisis?
Best regards.
Option 1: Count number of events above a threshold ArrayLength(FilterData(RecordedValues('PurpleLineAttribute','StartTime','EndTime'), $val> "value above threshold"))
Option 2: If you are planning to count cycles then create another analytics and use it as a flag e.g. If PurpleLineAttribute >"value above threshold" and PreviousValue of PurpleLineAttribute < "value above threshold" then counter = previouscountervalue +1 else NoOutput()
lal_babu.shaik. thanks!
I have a question about option 1.
I believe that if we count the number of events that exceed the threshold, we would get the number of events within the time period above the threshold.
What process should I use after this?