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

'''
    PM4Py – A Process Mining Library for Python
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see this software project's root or
visit <https://www.gnu.org/licenses/>.

Website: https://processintelligence.solutions
Contact: info@processintelligence.solutions
'''

from pm4py.objects.ocel.obj import OCEL
from copy import deepcopy


[docs] def apply(ocel: OCEL) -> OCEL: """ Rename objects given their object type, lifecycle start/end timestamps, and lexicographic order, Parameters ----------------- ocel Object-centric event log Returns ---------------- renamed_ocel Object-centric event log with renaming """ objects_start = ( ocel.relations.groupby(ocel.object_id_column)[ocel.event_timestamp] .first() .to_dict() ) objects_end = ( ocel.relations.groupby(ocel.object_id_column)[ocel.event_timestamp] .last() .to_dict() ) objects_ot0 = ocel.objects[ [ocel.object_id_column, ocel.object_type_column] ].to_dict("records") objects_ot0 = [ (x[ocel.object_id_column], x[ocel.object_type_column]) for x in objects_ot0 ] objects_ot1 = {} for el in objects_ot0: if not el[1] in objects_ot1: objects_ot1[el[1]] = [] objects_ot1[el[1]].append(el[0]) overall_objects = {} keys = sorted(list(objects_ot1)) for ot in keys: objects = objects_ot1[ot] objects.sort(key=lambda x: (objects_start[x], objects_end[x], x)) objects = { objects[i]: ot + "_" + str(i + 1) for i in range(len(objects)) } overall_objects.update(objects) ocel = deepcopy(ocel) ocel.objects[ocel.object_id_column] = ocel.objects[ ocel.object_id_column ].map(overall_objects) ocel.relations[ocel.object_id_column] = ocel.relations[ ocel.object_id_column ].map(overall_objects) ocel.o2o[ocel.object_id_column] = ocel.o2o[ocel.object_id_column].map( overall_objects ) ocel.o2o[ocel.object_id_column + "_2"] = ocel.o2o[ ocel.object_id_column + "_2" ].map(overall_objects) ocel.object_changes[ocel.object_id_column] = ocel.object_changes[ ocel.object_id_column ].map(overall_objects) return ocel