Source code for pm4py.visualization.heuristics_net.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
'''
import shutil
from enum import Enum
import pydotplus
from pm4py.util import exec_utils, vis_utils
from pm4py.visualization.heuristics_net.variants import pydotplus_vis
import tempfile
from pm4py.objects.heuristics_net.obj import HeuristicsNet
from typing import Optional, Dict, Any
from pm4py.util import constants
[docs]
class Variants(Enum):
PYDOTPLUS = pydotplus_vis
DEFAULT_VARIANT = Variants.PYDOTPLUS
[docs]
def apply(heu_net: HeuristicsNet, parameters: Optional[Dict[Any, Any]] = None, variant=DEFAULT_VARIANT) -> str:
"""
Gets a representation of an Heuristics Net
Parameters
-------------
heu_net
Heuristics net
parameters
Possible parameters of the algorithm, including:
- Parameters.FORMAT
variant
Variant of the algorithm to use:
- Variants.PYDOTPLUS
Returns
------------
gviz
Representation of the Heuristics Net
"""
return exec_utils.get_variant(variant).apply(heu_net, parameters=parameters)
[docs]
def get_graph(heu_net: HeuristicsNet, parameters: Optional[Dict[Any, Any]] = None, variant=DEFAULT_VARIANT) -> pydotplus.graphviz.Dot:
"""
Gets a representation of an Heuristics Net
Parameters
-------------
heu_net
Heuristics net
parameters
Possible parameters of the algorithm, including:
- Parameters.FORMAT
variant
Variant of the algorithm to use:
- Variants.PYDOTPLUS
Returns
------------
graph
Pydotplus graph
"""
return exec_utils.get_variant(variant).get_graph(heu_net, parameters=parameters)
[docs]
def view(figure):
"""
View on the screen a figure that has been rendered
Parameters
----------
figure
figure
"""
if constants.DEFAULT_ENABLE_VISUALIZATIONS_VIEW:
try:
filename = figure.name
figure = filename
except AttributeError:
# continue without problems, a proper path has been provided
pass
if constants.DEFAULT_GVIZ_VIEW == "matplotlib_view":
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread(figure)
plt.axis('off')
plt.tight_layout(pad=0, w_pad=0, h_pad=0)
plt.imshow(img)
plt.show()
return
if vis_utils.check_visualization_inside_jupyter():
vis_utils.view_image_in_jupyter(figure)
else:
vis_utils.open_opsystem_image_viewer(figure)
[docs]
def save(figure, output_file_path):
"""
Save a figure that has been rendered
Parameters
-----------
figure
figure
output_file_path
Path where the figure should be saved
"""
try:
filename = figure.name
figure = filename
except AttributeError:
# continue without problems, a proper path has been provided
pass
shutil.copyfile(figure, output_file_path)
return ""
[docs]
def serialize(figure: tempfile._TemporaryFileWrapper) -> bytes:
"""
Serialize a figure that has been rendered
Parameters
----------
figure
figure
"""
with open(figure.name, "rb") as f:
return f.read()
[docs]
def matplotlib_view(figure):
"""
Views the figure using Matplotlib
Parameters
---------------
figure
Figure
"""
if constants.DEFAULT_ENABLE_VISUALIZATIONS_VIEW:
try:
filename = figure.name
figure = filename
except AttributeError:
# continue without problems, a proper path has been provided
pass
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread(figure)
plt.imshow(img)
plt.show()