Plotter

class remu.plotting.Plotter(figax=None)[source]

Plotting base class.

Parameters
figax(Figure, Axes), optional

The figure and axis to plot in.

Attributes

figax

((Figure, [[Axes, …], …])) The figure and axes that are used for the plotting.

color

(cycle of str) Cycler that determines the color of plotting commands.

hatch

(cycle of str) Cycler that determines the hatching style of plotting commands.

Methods

savefig(*args, **kwargs)

Save the figure.

subplots(*args, **kwargs)

Return the (Figure, Axes) tuple of the binning.

savefig(*args, **kwargs)[source]

Save the figure.

subplots(*args, **kwargs)[source]

Return the (Figure, Axes) tuple of the binning.

Creates one using Matplotlib’s subplots, if necessary.