Source code for pm4py.objects.ocel.util.parent_children_ref

from pm4py.objects.ocel.obj import OCEL
from typing import Optional, Dict, Any


[docs] def apply( ocel: OCEL, child_obj_type: str, parent_obj_type: str, parameters: Optional[Dict[Any, Any]] = None, ) -> OCEL: """ Inserts an object attribute pointing to the parent of a child object, by looking at the related objects of the events of the log. This requires only the provision of the child object type and of the parent object type. Parameters -------------- ocel Object-centric event log child_obj_type Child object type (e.g. item) parent_obj_type Parent object type (e.g. parent) parameters Possible parameters of the algorithm Returns ------------- ocel Enriched object-centric event log """ if parameters is None: parameters = {} ev_lf = ( ocel.relations.groupby(ocel.event_id_column)[ocel.object_id_column] .agg(list) .to_dict() ) obj_types = ocel.objects[ [ocel.object_id_column, ocel.object_type_column] ].to_dict("records") obj_types = { x[ocel.object_id_column]: x[ocel.object_type_column] for x in obj_types } parents = {} for ev_id, lif in ev_lf.items(): for obj_id in lif: if obj_types[obj_id] == child_obj_type: for obj_id_2 in lif: if obj_types[obj_id_2] == parent_obj_type: parents[obj_id] = obj_id_2 col = ocel.objects[ocel.object_id_column].map(parents) if parent_obj_type + "ID" not in ocel.objects.columns: ocel.objects[parent_obj_type + "ID"] = col else: ocel.objects[parent_obj_type + "ID"] = ocel.objects[ parent_obj_type + "ID" ].fillna(col) return ocel