[Matplotlib-users] Question about the Matplotlib classic Toolbar - the pan feature to display only existent data..

2007-01-19 Thread maser rati
Hi Folks, I was wondering how to set the Matplotlib classic Toolbar in order to display only existent data when the back/forward arrows are clicked (i.e, the pan feature) for a subplot that displays plotted data. How to set the code in the matplotlib toolbar to only display the data from

Re: [Matplotlib-users] plotting data from a csv file on a basemap

2007-01-19 Thread Jose Gomez-Dans
Tim, On 1/19/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > how can I read data in that > x gets the latitude > y gets the longgitute > z gets the data which will be shown in different color accoring to their > values? Use pylab.load to load the data into an array. Then, the rest of what yo

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

Re: [Matplotlib-users] How to turn off autoscaling in Axes3D

2007-01-19 Thread John Hunter
> "Matthew" == Matthew Koichi Grimes <[EMAIL PROTECTED]> writes: Matthew> Autoscaling is usually cool, but for my particular Matthew> application I'd like to turn it off, so that my Matthew> successive surface plots are all shown in the same Matthew> scale. How can I turn off a

[Matplotlib-users] plotting data from a csv file on a basemap

2007-01-19 Thread timmichelsen
Hi! I am farely new to matplotlib and basemap. I have one question about how to plot data from a csv file on a map. the header goes as this ID lat(x) long(y) measurements(z) how can I read data in that x gets the latitude y gets the longgitute z gets the data which will be shown in different c