Filter Events with Statistics
filterEventsWithStatistics(eventData, durationThreshold = 0,
durationComparisonOperator = "gt", sumThreshold = 0,
sumComparisonOperator = "gt")
eventData of one time series, as returned in one list
element by getEventsWithStatistics
.
duration in seconds that needs to be exceeded (durationComparisonOperator == "gt") or reached (durationComparisonOperator == "ge") by the duration of the rain events. Default: 0
Operator to be applied when comparing the duration of the events with durationThreshold. Must be one of "gt" (greater than) or "ge" greater than or equal. Default: "gt"
value that needs to be exceeded (sumComparisonOperator == "gt") or reached (sumComparisonOperator == "ge") by the 'sum' of values within the events. Default: 0
Operator to be applied when comparing the 'sum' of values within the events with sumThreshold. Must be one of "gt" (greater than) or "ge" greater than or equal. Default: "gt"