Source code for pm4py.visualization.sna.visualizer
'''
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.visualization.sna.variants import networkx, pyvis
from enum import Enum
from pm4py.util import exec_utils
from pm4py.objects.org.sna.obj import SNA
[docs]
class Variants(Enum):
NETWORKX = networkx
PYVIS = pyvis
DEFAULT_VARIANT = Variants.NETWORKX
[docs]
def apply(metric_values: SNA, parameters=None, variant=DEFAULT_VARIANT):
"""
Perform SNA visualization starting from the Matrix Container object
and the Resource-Resource matrix
Parameters
-------------
metric_values
Value of the metrics
parameters
Possible parameters of the algorithm
variant
Variant of the algorithm to use, possible values:
- Variants.NETWORKX
- Variants.PYVIS
Returns
-------------
temp_file_name
Name of a temporary file where the visualization is placed
"""
return exec_utils.get_variant(variant).apply(
metric_values, parameters=parameters
)
[docs]
def view(temp_file_name, parameters=None, variant=DEFAULT_VARIANT):
"""
View the SNA visualization on the screen
Parameters
-------------
temp_file_name
Temporary file name
parameters
Possible parameters of the algorithm
"""
return exec_utils.get_variant(variant).view(
temp_file_name, parameters=parameters
)
[docs]
def save(temp_file_name, dest_file, parameters=None, variant=DEFAULT_VARIANT):
"""
Save the SNA visualization from a temporary file to a well-defined destination file
Parameters
-------------
temp_file_name
Temporary file name
dest_file
Destination file
parameters
Possible parameters of the algorithm
"""
return exec_utils.get_variant(variant).save(
temp_file_name, dest_file, parameters=parameters
)