Ticket #167 (assigned enhancement)
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: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.
Note: See
TracTickets for help on using
tickets.