pm4py.openai.abstract_dfg#
- pm4py.openai.abstract_dfg(log_obj: Union[DataFrame, EventLog, EventStream], max_len: int = 10000, include_performance: bool = True, relative_frequency: bool = False, response_header: bool = True, activity_key: str = 'concept:name', timestamp_key: str = 'time:timestamp', case_id_key: str = 'case:concept:name') str [source]#
Obtains the DFG abstraction of a traditional event log
- Parameters:
log_obj – log object
max_len (
int
) – maximum length of the (string) abstractioninclude_performance (
bool
) – (boolean) includes the performance of the paths in the abstractionrelative_frequency (
bool
) – (boolean) uses the relative instead of the absolute frequency of the pathsresponse_header (
bool
) – includes a short header before the paths, pointing to the description of the abstractionactivity_key (
str
) – the column to be used as activitytimestamp_key (
str
) – the column to be used as timestampcase_id_key (
str
) – the column to be used as case identifier
- Return type:
str
import pm4py log = pm4py.read_xes("tests/input_data/roadtraffic100traces.xes") print(pm4py.openai.abstract_dfg(log))