8. pyopus.visual — Visualization of simulation results

Visualization of simulation results

This module provides the functionality for visulaizing the results stored in a PerformanceEvaluator.

Only portable parts of this module’s submodules are imported into the main visual module. The memebrs of the mod:wxmplplotter module are therefore not imported (because it depends on wxPython and Matplotlib.

So you can do:

from pyopus.visual import IterationPlotter

instead of:

from pyopus.visual.plotter import IterationPlotter

But you cannot import WxMplPlotter with:

from pyopus.visual import WxMplPlotter

Instead you must specify the full path to WxMplPlotter:

from pyopus.visual.wxmplplotter import WxMplPlotter

Previous topic

7.3. pyopus.wxmplplot.plotitf — Functional interface to the plot window manager

Next topic

8.1. pyopus.visual.wxmplplotter — A wxPython and Matplotlib based simulation results plotter

This Page