pm4py.statistics.rework.cases.log.get module#

class pm4py.statistics.rework.cases.log.get.Parameters(*values)[source]#

Bases: Enum

ACTIVITY_KEY = 'pm4py:param:activity_key'#
CASE_ID_KEY = 'pm4py:param:case_id_key'#
pm4py.statistics.rework.cases.log.get.apply(log: EventLog, parameters: Dict[str | Parameters, Any] | None = None) Dict[str, Dict[str, int]][source]#

Computes for each trace of the event log how much rework occurs. The rework is computed as the difference between the total number of activities of a trace and the number of unique activities.

Parameters:
  • log – Event log

  • parameters – Parameters of the algorithm, including: - Parameters.ACTIVITY_KEY => the activity key - Parameters.CASE_ID_KEY => the case identifier attribute

Returns:

Dictionary associating to each case ID: - The number of total activities of the case (number of events) - The rework (difference between the total number of activities of a trace and the number of unique activities)

Return type:

dict