Skip to main content

dotted_chart

process_mining::analysis::case_centric::dotted_chart

Functions in this Module(1)

get_dotted_chart

Generate dotted chart data from an event log.
Traces are sorted by the timestamp of their first event. Each event
produces one dot with coordinates determined by the configured axes.
Source
fn get_dotted_chart(xes*: EventLog, options: DottedChartOptions)DottedChartData

Arguments

Returns

import r4pm
xes = r4pm.import_item('EventLog','path/to/file')
# Optional argument: options, can also be omitted
options = {"color_axis": 'Activity', "timestamp_key": 'example', "x_axis": 'Time', "y_axis": 'Case'}
res = r4pm.bindings.get_dotted_chart(xes, options)