[Matplotlib-users] stuck: need help with pythonxy/matplotlib for the first time

2011-04-13 Thread jerome thircuir
hello, can someone give me a hint to get started. context: i'm trying to use pythonxy and matplotlib i've got python 2.7 installed, and pythonxy i also have matplotlib installed (i know that because it runs from ipythonxy - the interactive console) eventually i'll need to be getting data from a

[Matplotlib-users] Linecollection, labels

2011-04-13 Thread Tim Åberg
Due to that my first question a couple of day back was a mess i thougth i could clear things up. Is there any way to label the lines using linecollection. In plot there is label, example; plot(x,y,label = Hello) But are there any way to do the same thing with linecollection? If not, is there

[Matplotlib-users] qt config dialogue

2011-04-13 Thread Wolfgang Kerzendorf
Dear all, Is it possible to make a qt config dialogue that works in a similar fashion to the backend of matplotlib when using with ipython --pylab. It should be able to interact with plots (pressing buttons changing stuff in the plot) as well as not block ipython. Is that possible. Are there

[Matplotlib-users] scaling multiple plots same axis?

2011-04-13 Thread Neal Becker
Suppose I'm generating multiple seperate plots. I'd like them auto-scaled, but in the end want the same axis (so they can be visually compared). Any suggestions? (semilogy, if that matters). -- Forrester Wave Report

[Matplotlib-users] Turn off autoscale and optional subplots

2011-04-13 Thread Andrea Crotti
I need to generate in some cases a subplot with two plots one on top of the other, and in some other cases just one subplot. So after some attempts I ended up with the ugliest code I've ever written (maybe not) that you see below. Is there a better way to do it? I still didn't fully get how to

Re: [Matplotlib-users] stuck: need help with pythonxy/matplotlib for the first time

2011-04-13 Thread Paul Ivanov
Hi Jerome, jerome thircuir, on 2011-04-13 10:15, wrote: hello, can someone give me a hint to get started. we'll try our best, but I think we'll need more information from you. context: i'm trying to use pythonxy and matplotlib i've got python 2.7 installed, and pythonxy i also have

Re: [Matplotlib-users] scaling multiple plots same axis?

2011-04-13 Thread Paul Ivanov
Neal Becker, on 2011-04-13 11:18, wrote: Suppose I'm generating multiple seperate plots. I'd like them auto-scaled, but in the end want the same axis (so they can be visually compared). Any suggestions? (semilogy, if that matters). Hi Neal, provided that the scales are different only

Re: [Matplotlib-users] Linecollection, labels

2011-04-13 Thread Goyo
2011/4/13 Tim Åberg qw...@hotmail.com: Due to that my first question a couple of day back was a mess i thougth i could clear things up. Is there any way to label the lines using linecollection. In plot there is label, example; plot(x,y,label = Hello) But are there any way to do the same

[Matplotlib-users] 3d navigation with zoom and rotate

2011-04-13 Thread Mathew Yeates
Hi Has anyone ever added this capability? I want to be able to rotate a projection of the earth. Thanks Mathew -- Forrester Wave Report - Recovery time is now measured in hours and minutes not days. Key insights are

[Matplotlib-users] pylab plot problem

2011-04-13 Thread Oğuz Yarımtepe
I didn't understand why i can not see 20 dots with the below command, but i just see 3 dots at the graph. import pylab as P import numpy as N a1 = N.ndarray(shape=(10,2))*2 x = a1[:,0] y = a1[:,1] a2 = N.ndarray(shape=(10,2))+10 xx = a2[:,0] yy = a2[:,1] n_x = N.append(x,xx) n_y =

Re: [Matplotlib-users] pylab plot problem

2011-04-13 Thread Paul Ivanov
Hi Oğuz, Oğuz Yarımtepe, on 2011-04-13 23:09, wrote: I didn't understand why i can not see 20 dots with the below command, but i just see 3 dots at the graph. a1 = N.ndarray(shape=(10,2))*2 When you allocate an array this way - you're just allocating space for it without initializing it to