pymchelper.writers.plots module

class pymchelper.writers.plots.GnuplotDataWriter(filename, options)[source]

Bases: object

TODO

write(estimator)[source]

TODO

class pymchelper.writers.plots.ImageWriter(filename, options)[source]

Bases: object

Writer responsible for creating PNG images using matplotlib library

default_colormap = 'gnuplot2'
get_page_figure(page)[source]

Calculate matplotlib figure object for a single page in estimator

write(estimator)[source]

Go through all pages in estimator and save corresponding figure to an output file

class pymchelper.writers.plots.PlotAxis[source]

Bases: enum.IntEnum

An enumeration.

x = 1
y = 2
z = 3
class pymchelper.writers.plots.PlotDataWriter(filename, options)[source]

Bases: object

gnuplot data writer

write(estimator)[source]

TODO

write_single_page(page, filename)[source]

TODO