An internal function that detects proto-events, which are periods of time above a threshold, but without necessarily considering a minimum duration or joining across gaps.
proto_event(t_series, criterion_column, minDuration, joinAcrossGaps, maxGap)
A dataframe of the correct dimensions inherited
from detect_event
within which this runs.
The column to use for the detection of events.
Minimum duration for acceptance of detected events.
This logic gate tells this internal function if
it should connect events across the maxGap
(see below). The
default it inherits is TRUE
.
This is the number of rows (days) across which distinct
events will be combined into one event if joinAcrossGaps = TRUE
.
A dataframe that will be used within
detect_event
.