Re: [Matplotlib-users] multiple lines, multiple plots, single figure

2007-01-19 Thread Tom Denniston
if you're building an app i would suggest using the OO interface. There are good examples in the examples directory. But basically you get a figure either by constructing it or using pylab.gcf and you can add_axes to the figure and plot on them. It is much more scalable for an app than the pylab

Re: [Matplotlib-users] multiple lines, multiple plots, single figure

2007-01-19 Thread Jonathon Anderson
It's definitely not the behavior I'm seeing here. In my matploblibrc file, hold is set to True. Is there another value that might be influencing this? In any case, I don't want the behavior to be dependent on a config file: I'm building an application. Do you know how I might specify this behavio

[Matplotlib-users] multiple lines, multiple plots, single figure

2007-01-19 Thread Jonathon Anderson
I have several lines of data that I want to plot on the same graph, but every time I run the pylab.plot() function it redraws the graph from nothing. I've tried pylab.plot(*, hold=True) and pylab.hold(True), but it still happens. Can I add data to an existing figure, or do I have to pass all the d