Link dated events (records) which have similar attributes and occur within specified durations of each other. Each set of linked records are assigned a unique identifier with relevant group-level information.
episode_group(df, ..., episode_type = "fixed")fixed_episodes(
date,
case_length = Inf,
episode_unit = "days",
to_s4 = TRUE,
case_overlap_methods = 8,
deduplicate = FALSE,
display = "none",
bi_direction = FALSE,
recurrence_length = case_length,
recurrence_overlap_methods = case_overlap_methods,
include_index_period = TRUE,
...,
overlap_methods = 8,
overlap_method = 8,
x
)
rolling_episodes(
date,
case_length = Inf,
recurrence_length = case_length,
episode_unit = "days",
to_s4 = TRUE,
case_overlap_methods = 8,
recurrence_overlap_methods = case_overlap_methods,
deduplicate = FALSE,
display = "none",
bi_direction = FALSE,
include_index_period = TRUE,
...,
overlap_methods = 8,
overlap_method = 8,
x
)
[data.frame]
. Deprecated. One or more datasets appended together. See Details
.
Arguments passed to episodes
.
[character]
. Options are "fixed"
(default), "rolling"
or "recursive"
. See Details
.
[date|datetime|integer|number_line]
. Event date or period.
[integer|number_line]
. Duration from index event distinguishing one "case"
from another.
This is the case window.
[character]
. Time units for case_length
and recurrence_length
. Options are "seconds", "minutes", "hours", "days" (default), "weeks", "months" or "years". See diyar::episode_unit
.
[logical]
. Deprecated. Output type - epid
(TRUE
) or data.frame
(FALSE
).
[character|integer]
. Methods of overlap considered when tracking duplicates of "case"
events. See (overlaps
)
[logical]
. Deprecated. If TRUE
, "duplicate"
events are excluded from the epid
.
[character]
. The progress messages printed on screen. Options are; "none"
(default), "progress"
, "stats"
, "none_with_report"
, "progress_with_report"
or "stats_with_report"
.
[logical]
. Deprecated. If TRUE
, "duplicate"
events before and after the index event are tracked.
[integer|number_line]
. Duration from the last "duplicate"
event distinguishing a "recurrent"
event from its index event. This is the recurrence window.
[character|integer]
. Methods of overlap considered when tracking duplicates of "recurrent"
events. See (overlaps
)
[logical]
. Deprecated. If TRUE
, events overlapping with the index event or period are linked even if they are outside the cut-off period.
[character]
. Deprecated. Please use case_overlap_methods
or recurrence_overlap_methods
. Methods of overlap considered when tracking duplicate event. See (overlaps
)
[character]
. Deprecated. Please use case_overlap_methods
or recurrence_overlap_methods
. Methods of overlap considered when tracking event. All event are checked by the same set of overlap_method
.
[date|datetime|integer|number_line]
. Deprecated. Record date or period. Please use date
.
epid
; list
These functions are superseded. Moving forward, please use episodes
.