pm4py.visualization.graphs.variants.attributes module#

class pm4py.visualization.graphs.variants.attributes.Parameters(*values)[source]#

Bases: Enum

TITLE = 'title'#
FORMAT = 'format'#
X_AXIS = 'x_axis'#
Y_AXIS = 'y_axis'#
PYPLOT_PLOT_KWARGS = 'pylot_plot_kwargs'#
TRANSPARENT = 'transparent'#
pm4py.visualization.graphs.variants.attributes.apply_plot(x: List[float], y: List[float], parameters: Dict[str | Parameters, Any] | None = None) str[source]#

Plot (non-logarithmic way) the graph with axis values contained in x and y

Parameters:
  • x – Values for x-axis

  • y – Values for y-axis

  • parameters

    Parameters of the algorithm, including:

    Parameters.FORMAT -> Format of the target image Parameters.TITLE -> Title of the image

Returns:

Representation temporary file name

Return type:

temp_file_name

pm4py.visualization.graphs.variants.attributes.apply_semilogx(x: List[float], y: List[float], parameters: Dict[str | Parameters, Any] | None = None) str[source]#

Plot (semi-logarithmic way) the graph with axis values contained in x and y

Parameters:
  • x – Values for x-axis

  • y – Values for y-axis

  • parameters

    Parameters of the algorithm, including:

    Parameters.FORMAT -> Format of the target image Parameters.TITLE -> Title of the image

Returns:

Representation temporary file name

Return type:

temp_file_name