-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release' into release-github
# Conflicts: # pm4py/algo/simulation/playout/dfg/algorithm.py # pm4py/algo/simulation/playout/dfg/variants/__init__.py # pm4py/meta.py # pm4py/streaming/__init__.py
- Loading branch information
Showing
40 changed files
with
1,051 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import pandas as pd | ||
import pm4py | ||
import os | ||
from pm4py.streaming.conversion import from_pandas | ||
|
||
|
||
def execute_script(): | ||
df = pd.read_csv(os.path.join("..", "tests", "input_data", "receipt.csv")) | ||
df = pm4py.format_dataframe(df) | ||
it = from_pandas.apply(df) | ||
count = 0 | ||
for trace in it: | ||
print(count, trace) | ||
count = count + 1 | ||
|
||
|
||
if __name__ == "__main__": | ||
execute_script() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import pandas as pd | ||
import pm4py | ||
import os | ||
from pm4py.streaming.conversion import from_pandas | ||
from pm4py.streaming.stream.live_trace_stream import LiveTraceStream | ||
from pm4py.streaming.util import trace_stream_printer | ||
|
||
|
||
def execute_script(): | ||
df = pd.read_csv(os.path.join("..", "tests", "input_data", "receipt.csv")) | ||
df = pm4py.format_dataframe(df) | ||
it = from_pandas.apply(df) | ||
printer = trace_stream_printer.TraceStreamPrinter() | ||
trace_stream = LiveTraceStream() | ||
trace_stream.register(printer) | ||
trace_stream.start() | ||
it.to_trace_stream(trace_stream) | ||
trace_stream.stop() | ||
|
||
|
||
if __name__ == "__main__": | ||
execute_script() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import os | ||
|
||
import pm4py | ||
from pm4py.algo.simulation.playout.dfg import algorithm as dfg_simulator | ||
|
||
|
||
def execute_script(): | ||
log = pm4py.read_xes(os.path.join("..", "tests", "input_data", "receipt.xes")) | ||
frequency_dfg, sa, ea = pm4py.discover_dfg(log) | ||
performance_dfg, sa, ea = pm4py.discover_performance_dfg(log) | ||
simulated_log = dfg_simulator.apply(frequency_dfg, sa, ea, variant=dfg_simulator.Variants.PERFORMANCE, | ||
parameters={"performance_dfg": performance_dfg}) | ||
print(simulated_log) | ||
|
||
|
||
if __name__ == "__main__": | ||
execute_script() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
''' | ||
This file is part of PM4Py (More Info: https://pm4py.fit.fraunhofer.de). | ||
PM4Py is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
PM4Py 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with PM4Py. If not, see <https://www.gnu.org/licenses/>. | ||
''' | ||
from pm4py.algo.filtering.log.rework import rework_filter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
''' | ||
This file is part of PM4Py (More Info: https://pm4py.fit.fraunhofer.de). | ||
PM4Py is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
PM4Py 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with PM4Py. If not, see <https://www.gnu.org/licenses/>. | ||
''' | ||
from enum import Enum | ||
from pm4py.util import constants, xes_constants, exec_utils | ||
from pm4py.objects.log.obj import EventLog | ||
from collections import Counter | ||
from typing import Optional, Dict, Any | ||
|
||
|
||
class Parameters(Enum): | ||
ACTIVITY_KEY = constants.PARAMETER_CONSTANT_ACTIVITY_KEY | ||
MIN_OCCURRENCES = "min_occurrences" | ||
POSITIVE = "positive" | ||
|
||
|
||
def apply(log: EventLog, activity: str, parameters: Optional[Dict[Any, Any]] = None) -> EventLog: | ||
""" | ||
Applies the rework filter on the provided event log and activity. | ||
This filter the cases of the log having at least Parameters.MIN_OCCURRENCES (default: 2) occurrences | ||
of the given activity. | ||
It is also possible (setting Parameters.POSITIVE to False) to retrieve the cases of the log not having the | ||
given activity or having the activity occurred less than Parameters.MIN_OCCURRENCES times. | ||
Parameters | ||
------------------- | ||
log | ||
Event log | ||
activity | ||
Activity of which the rework shall be filtered | ||
parameters | ||
Parameters of the filter, including: | ||
- Parameters.ACTIVITY_KEY => the attribute to use as activity | ||
- Parameters.MIN_OCCURRENCES => the minimum number of occurrences for the activity | ||
- Parameters.POSITIVE => if True, filters the cases of the log having at least MIN_OCCURRENCES occurrences. | ||
if False, filters the cases of the log where such behavior does not occur. | ||
Returns | ||
----------------- | ||
filtered_log | ||
Filtered event log | ||
""" | ||
if parameters is None: | ||
parameters = {} | ||
|
||
activity_key = exec_utils.get_param_value(Parameters.ACTIVITY_KEY, parameters, xes_constants.DEFAULT_NAME_KEY) | ||
min_occurrences = exec_utils.get_param_value(Parameters.MIN_OCCURRENCES, parameters, 2) | ||
positive = exec_utils.get_param_value(Parameters.POSITIVE, parameters, True) | ||
|
||
filtered_log = EventLog(list(), attributes=log.attributes, extensions=log.extensions, classifiers=log.classifiers, | ||
omni_present=log.omni_present, properties=log.properties) | ||
|
||
for trace in log: | ||
act_counter = Counter([x[activity_key] for x in trace]) | ||
if positive and activity in act_counter and act_counter[activity] >= min_occurrences: | ||
filtered_log.append(trace) | ||
elif not positive and (activity not in act_counter or act_counter[activity] < min_occurrences): | ||
filtered_log.append(trace) | ||
|
||
return filtered_log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
''' | ||
This file is part of PM4Py (More Info: https://pm4py.fit.fraunhofer.de). | ||
PM4Py is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
PM4Py 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with PM4Py. If not, see <https://www.gnu.org/licenses/>. | ||
''' | ||
from pm4py.algo.filtering.pandas.rework import rework_filter |
Oops, something went wrong.