pm4py.objects.conversion.ocel.variants.ocel_features_to_nx module#

class pm4py.objects.conversion.ocel.variants.ocel_features_to_nx.Parameters(*values)[source]#

Bases: Enum

INCLUDE_OBJ_INTERACTION_GRAPH = 'include_obj_interaction_graph'#
INCLUDE_OBJ_DESCENDANTS_GRAPH = 'include_obj_descendants_graph'#
INCLUDE_OBJ_INHERITANCE_GRAPH = 'include_obj_inheritance_graph'#
INCLUDE_OBJ_COBIRTH_GRAPH = 'include_obj_cobirth_graph'#
INCLUDE_OBJ_CODEATH_GRAPH = 'include_obj_codeath_graph'#
pm4py.objects.conversion.ocel.variants.ocel_features_to_nx.apply(ocel: OCEL, parameters: Dict[Any, Any] | None = None)[source]#

Converts the graphs of features extracted from an OCEL to a NetworkX DiGraph object

Parameters:
  • ocel – Object-centric event log

  • parameters – Parameters of the algorithm, including: - Parameters.INCLUDE_OBJ_INTERACTION_GRAPH => includes the object interaction graph in the NX DiGraph - Parameters.INCLUDE_OBJ_DESCENDANTS_GRAPH => includes the object descendants graph in the NX DiGraph - Parameters.INCLUDE_OBJ_INHERITANCE_GRAPH => includes the object inheritance graph in the NX DiGraph - Parameters.INCLUDE_OBJ_COBIRTH_GRAPH => includes the object cobirth graph in the NX DiGraph - Parameters.INCLUDE_OBJ_CODEATH_GRAPH => includes the object codeath graph in the NX DiGraph

Returns:

NetworkX DiGraph

Return type:

G