Source code for pm4py.visualization.sna.variants.pyvis

'''
    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
import tempfile
from enum import Enum

from pm4py.util import exec_utils, vis_utils, constants
from pm4py.objects.org.sna.obj import SNA


[docs] class Parameters(Enum): WEIGHT_THRESHOLD = "weight_threshold" IFRAME_WIDTH = "iframe_width" IFRAME_HEIGHT = "iframe_height" LOCAL_JUPYTER_FILE_NAME = "local_jupyter_file_name"
[docs] def get_temp_file_name(format): """ Gets a temporary file name for the image Parameters ------------ format Format of the target image """ filename = tempfile.NamedTemporaryFile(suffix="." + format) name = filename.name filename.close() return name
[docs] def apply(sna: SNA, parameters=None): """ Perform SNA visualization starting from the Matrix Container object and the Resource-Resource matrix Parameters ------------- sna Value of the metrics parameters Possible parameters of the algorithm, including: - Parameters.WEIGHT_THRESHOLD -> the weight threshold to use in displaying the graph Returns ------------- temp_file_name Name of a temporary file where the visualization is placed """ from pyvis.network import Network if parameters is None: parameters = {} weight_threshold = exec_utils.get_param_value( Parameters.WEIGHT_THRESHOLD, parameters, 0 ) directed = sna.is_directed temp_file_name = get_temp_file_name("html") got_net = Network( height="750px", width="100%", bgcolor="black", font_color="#3de975", directed=directed, ) # set the physics layout of the network got_net.barnes_hut() for c, w in sna.connections.items(): if w >= weight_threshold: src = c[0] # convert ids to labels dst = c[1] # I have to add some options here, there is no parameter highlight = {"border": "#3de975", "background": "#41e9df"} # color = {'border': "#000000", 'background': "#123456"} got_net.add_node( src, src, title=src, labelHighlightBold=True, color={"highlight": highlight}, ) got_net.add_node( dst, dst, title=dst, labelHighlightBold=True, color={"highlight": highlight}, ) got_net.add_edge(src, dst, value=w, title=w) neighbor_map = got_net.get_adj_list() # add neighbor data to node hover data for node in got_net.nodes: counter = 0 if directed: node["title"] = "<h3>" + node["title"] + " Output Links: </h3>" else: node["title"] = "<h3>" + node["title"] + " Links: </h3>" for neighbor in neighbor_map[node["id"]]: if counter % 10 == 0: node["title"] += "<br>::: " + neighbor else: node["title"] += " ::: " + neighbor node["value"] = len(neighbor_map[node["id"]]) counter += 1 got_net.show_buttons(filter_=["nodes", "edges", "physics"]) F = open(temp_file_name, "w") try: F.write(got_net.generate_html()) F.close() except BaseException: # networkx 3.1 F.close() got_net.write_html(temp_file_name) return temp_file_name
[docs] def view(temp_file_name, parameters=None): """ View the SNA visualization on the screen Parameters ------------- temp_file_name Temporary file name parameters Possible parameters of the algorithm """ if parameters is None: parameters = {} if constants.DEFAULT_ENABLE_VISUALIZATIONS_VIEW: iframe_width = exec_utils.get_param_value( Parameters.IFRAME_WIDTH, parameters, 900 ) iframe_height = exec_utils.get_param_value( Parameters.IFRAME_HEIGHT, parameters, 600 ) local_jupyter_file_name = exec_utils.get_param_value( Parameters.LOCAL_JUPYTER_FILE_NAME, parameters, "jupyter_sna_vis.html", ) if vis_utils.check_visualization_inside_jupyter(): from IPython.display import IFrame shutil.copyfile(temp_file_name, local_jupyter_file_name) iframe = IFrame( local_jupyter_file_name, width=iframe_width, height=iframe_height, ) from IPython.display import display return display(iframe) else: vis_utils.open_opsystem_image_viewer(temp_file_name)
[docs] def save(temp_file_name, dest_file, parameters=None): """ 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 """ if parameters is None: parameters = {} shutil.copyfile(temp_file_name, dest_file)