Learn R Programming

edeaR (version 0.4.4)

filter_endpoints: Filter: Filter based on percentile of start and end activities

Description

Filters the log based on a provided set of start and end activities

Usage

filter_endpoints(eventlog, start_activities = NULL, end_activities = NULL, percentile_cut_off = NULL, reverse = F)

Arguments

eventlog
The event log to be used. An object of class eventlog.
start_activities
Start activities used for filtering.
end_activities
End activities used for filtering.
percentile_cut_off
Alternatively to using (sets of) start or end activities, a percentile cut off can be provided. A percentile cut off value of 0.9 will return the cases starting and ending with the 90% most common start and end activities. When reverse is set to TRUE, it will return the 10% cases with the least common start and end activivities.
reverse
A logical parameter depicting whether the selection should be reversed.