Visualization#

class Visualizable#

Bases: object

Base class for visualizable results.

property title: str#

Title of the visualizable.

Returns: Title string.

plot(axes=None, *, title=None)#

Plot a visualizable.

Parameters:
  • axes (plt.Axes | None, optional) – The axis object into which the information should be plotted. If not specified, the routine will generate and return a new figure.

  • title (str, optional) – Title of the generated plot.

Return type:

Optional[Figure]

Returns:

The newly generated matplotlib figure. None if axes were provided.