pm4py.algo.conformance.tokenreplay package

Submodules

pm4py.algo.conformance.tokenreplay.algorithm module

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/>.

class pm4py.algo.conformance.tokenreplay.algorithm.Variants[source]

Bases: enum.Enum

An enumeration.

BACKWARDS = <module 'pm4py.algo.conformance.tokenreplay.variants.backwards' from '/home/docs/checkouts/readthedocs.org/user_builds/pm4py-source/checkouts/stable/pm4py/algo/conformance/tokenreplay/variants/backwards.py'>
TOKEN_REPLAY = <module 'pm4py.algo.conformance.tokenreplay.variants.token_replay' from '/home/docs/checkouts/readthedocs.org/user_builds/pm4py-source/checkouts/stable/pm4py/algo/conformance/tokenreplay/variants/token_replay.py'>
pm4py.algo.conformance.tokenreplay.algorithm.apply(log: Union[pm4py.objects.log.obj.EventLog, pm4py.objects.log.obj.EventStream, pandas.core.frame.DataFrame], net: pm4py.objects.petri_net.obj.PetriNet, initial_marking: pm4py.objects.petri_net.obj.Marking, final_marking: pm4py.objects.petri_net.obj.Marking, parameters: Optional[Dict[Any, Any]] = None, variant=<Variants.TOKEN_REPLAY: <module 'pm4py.algo.conformance.tokenreplay.variants.token_replay' from '/home/docs/checkouts/readthedocs.org/user_builds/pm4py-source/checkouts/stable/pm4py/algo/conformance/tokenreplay/variants/token_replay.py'>>) → List[Dict[str, Any]][source]

Method to apply token-based replay

Parameters:
  • log – Log

  • net – Petri net

  • initial_marking – Initial marking

  • final_marking – Final marking

  • parameters

    Parameters of the algorithm, including:

    Parameters.ACTIVITY_KEY -> Activity key

  • variant

    Variant of the algorithm to use:
    • Variants.TOKEN_REPLAY
    • Variants.BACKWARDS
pm4py.algo.conformance.tokenreplay.algorithm.get_diagnostics_dataframe(log: Union[pm4py.objects.log.obj.EventLog, pm4py.objects.log.obj.EventStream, pandas.core.frame.DataFrame], tbr_output: List[Dict[str, Any]], variant=<Variants.TOKEN_REPLAY: <module 'pm4py.algo.conformance.tokenreplay.variants.token_replay' from '/home/docs/checkouts/readthedocs.org/user_builds/pm4py-source/checkouts/stable/pm4py/algo/conformance/tokenreplay/variants/token_replay.py'>>, parameters: Optional[Dict[Any, Any]] = None) → pandas.core.frame.DataFrame[source]

Gets the results of token-based replay in a dataframe

Parameters:
  • log – Event log

  • tbr_output – Output of the token-based replay technique

  • variant

    Variant of the algorithm to use:
    • Variants.TOKEN_REPLAY
    • Variants.BACKWARDS
Returns:

Diagnostics dataframe

Return type:

dataframe

Module contents

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/>.