Ticket #167 (assigned enhancement)

Opened 5 years ago

Last modified 22 months ago

generate convergence plot from monitor stream

Reported by: mmckerns Owned by: mmckerns
Priority: minor Milestone: mystic-0.3a
Component: mystic.tools Keywords:
Cc:

Description

generate convergence plot from monitor stream (as a function call)

Change History

comment:1 Changed 5 years ago by mmckerns

  • Priority changed from major to minor

comment:2 Changed 5 years ago by mmckerns

At the most basic, the following is required:

def plot_param(monitor):
    x = range(len(monitor.y))
    y = monitor.x
    pylab.plot(x,y)
    return

def plot_cost(monitor):
    x = range(len(monitor.y))
    y = monitor.y
    pylab.plot(x,y)
    return

It would be nice to be able to use subplots to (optionally) show both of the above plots at once. Also, the features available in the plotting scripts should be implemented.

comment:3 Changed 22 months ago by mmckerns

some initial work on this in r736

comment:4 Changed 22 months ago by mmckerns

  • Status changed from new to assigned
Note: See TracTickets for help on using tickets.