out_plot.PlotRenderer

tools.out_plot.PlotRenderer(self, output)

Provides methods for rendering an output in plot form.

Examples

Most commonly, you will use PlotRenderer starting from a simulation output object that supports it:

out = BasicSimulation(rume).run()
out.plot.line(...)

Methods

Name Description
line Renders a line plot using matplotlib showing the given selections.
line_plt Draws lines onto the given matplotlib Axes to show the given selections. This is a variant of the method line() that gives you more control over the rendering of a plot by letting you do most of the work with matplotlib’s API.