trace_length | R Documentation |
Analysis of trace lengths
This metric provides an overview of the number of activities that occur in each trace.
An important remark is that this metric takes into account each instance of an activity, but not the individual lifecycle events.
trace_length(
log,
level = c("log", "trace", "case"),
append = deprecated(),
append_column = NULL,
sort = TRUE,
eventlog = deprecated()
)
## S3 method for class 'eventlog'
trace_length(
log,
level = c("log", "trace", "case"),
append = deprecated(),
append_column = NULL,
sort = TRUE,
eventlog = deprecated()
)
## S3 method for class 'grouped_eventlog'
trace_length(
log,
level = c("log", "trace", "case"),
append = deprecated(),
append_column = NULL,
sort = TRUE,
eventlog = deprecated()
)
## S3 method for class 'activitylog'
trace_length(
log,
level = c("log", "trace", "case"),
append = deprecated(),
append_column = NULL,
sort = TRUE,
eventlog = deprecated()
)
## S3 method for class 'grouped_activitylog'
trace_length(
log,
level = c("log", "trace", "case"),
append = deprecated(),
append_column = NULL,
sort = TRUE,
eventlog = deprecated()
)
Argument level
has the following options:
At "log"
level, the summary statistics describing the trace length of cases in an aggregated fashion.
On "trace"
level, the trace length of the different process variants or traces in the log are calculated.
On "case"
level, the trace lengths for each case are computed.
trace_length(eventlog)
: Computes trace length for an eventlog
.
trace_length(grouped_eventlog)
: Computes trace length for a grouped_eventlog
.
trace_length(activitylog)
: Computes trace length for an activitylog
.
trace_length(grouped_activitylog)
: Computes trace length for a grouped_activitylog
.
Swennen, M. (2018). Using Event Log Knowledge to Support Operational Exellence Techniques (Doctoral dissertation). Hasselt University.
Other metrics:
activity_frequency()
,
activity_presence()
,
end_activities()
,
idle_time()
,
number_of_repetitions()
,
number_of_selfloops()
,
number_of_traces()
,
processing_time()
,
resource_frequency()
,
resource_involvement()
,
resource_specialisation()
,
start_activities()
,
throughput_time()
,
trace_coverage()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.