The function will return a tibble with results similar to those seen in
Table 2 of Hobday et al. (2018). This provides the information necessary to
appraise the extent of the events in the output of detect_event
based on the
category ranking scale. The category thresholds are calculated based on the difference
between the given seasonal climatology and threshold climatology. The four category levels
are then the difference multiplied by the category level.
The definitions for the default output columns are as follows:
event_noThe number of the event as determined by detect_event
to allow for joining between the outputs.
event_nameThe name of the event. Generated from the name
value provided and the year of the peak_date
(see following) of
the event. If no name
value is provided the default "Event" is used.
As proposed in Hobday et al. (2018), Moderate
events are not given a name
so as to prevent multiple repeat names within the same year. If two or more events
ranked greater than Moderate are reported within the same year, they will be
differentiated with the addition of a trailing letter
(e.g. Event 2001a, Event 2001b).
peak_dateThe date (day) on which the maximum intensity of the event
was recorded.
categoryThe maximum category threshold reached/exceeded by the event.
i_maxThe maximum intensity of the event above the threshold value.
durationThe total duration (days) of the event. Note that this includes
any possible days when the measurement value y
) may have dropped below the
threshold value. Therefore, the proportion of the event duration (days) spent above
certain thresholds may not add up to 100% (see following four items).
p_moderateThe proportion of the total duration (days) spent at or above
the first threshold, but below any further thresholds.
p_strongThe proportion of the total duration (days) spent at or above
the second threshold, but below any further thresholds.
p_severeThe proportion of the total duration (days) spent at or above
the third threshold, but below the fourth threshold.
p_extremeThe proportion of the total duration (days) spent at or above
the fourth and final threshold.
seasonThe season(s) during which the event occurred. If the event
occurred across two seasons this will be displayed as e.g. "Winter/Spring".
Across three seasons as e.g. "Winter-Summer". Events lasting across four or more
seasons are listed as "Year-round". December (June) is used here as the start of
Austral (Boreal) summer. If "start", "peak", or "end" was given to the season
argument then only the one season during that chosen period will be given.
If climatology = TRUE, this function will output a list of two dataframes.
The first dataframe, climatology, will contain the following columns:
tThe column containing the daily date values.
event_noThe numeric event number label.
intensityThe daily exceedance (default is degrees C) above the
seasonal climatology.
categoryThe category classification per day.
The second dataframe, event, contains the default output of this function,
as detailed above.