out_table.TableRenderer

tools.out_table.TableRenderer(self, output)

Provides a number of methods for rendering an output in tabular form.

Examples

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

out = BasicSimulation(rume).run()
out.table.quantiles(...)

Methods

Name Description
quantiles Renders a table showing time-series quantiles for the given selections.
range Renders a table showing minimum and maximum values over time for the given selections. This is equivalent to calling quantiles() with 0 and 1.
sum Renders a table showing summed values over time for the given selections.
chart Renders a table showing a rough time series bar chart for the given selections using ASCII characters.