class documentation

Base class for all plots.

Method freeze Freezes the plot, replacing it with a static image.
Method save Saves the plot.
Method show Shows the plot.
Property is_frozen Whether this plot is currently frozen.
Method _repr_pretty_ Undocumented
def freeze(self): (source)

Freezes the plot, replacing it with a static image.

Only applicable in notebook contexts.

def save(self, path, **kwargs): (source)

Saves the plot.

Parameters
paththe path to write the plot
**kwargssubclass-specific keyword arguments
def show(self, **kwargs): (source)

Shows the plot.

Parameters
**kwargssubclass-specific keyword arguments
def _repr_pretty_(self, *args, **kwargs): (source)

Undocumented