Re: [Matplotlib-users] draw upper and lower limits

2008-07-31 Thread Jae-Joon Lee
If you're like me and what you want is just an arrow mark with its head at (x,y), you may use scatter() with custom verts. arrowup_verts = [[0.,0.], [-1., -1], [0.,0.], [0.,-2.],[0.,0.], [1, -1]] arrowdown_verts = [[0.,0.], [-1., 1], [0.,0.], [0.,2.],[0.,0.], [1, 1]] scatter([1.],[1.]

Re: [Matplotlib-users] draw upper and lower limits

2008-07-31 Thread Manuel Metz
Antonino Cucchiara wrote: > Hi, > I have some graphs with lower and upper limits. I found a couple of > ideas online, but nothing like "plotting symbols" like arrows. > I am using the mathtex upperarrow symbol but it is quite unconfortable > positioning the tex character in the righ X-Y position.

[Matplotlib-users] draw upper and lower limits

2008-07-31 Thread Antonino Cucchiara
Hi, I have some graphs with lower and upper limits. I found a couple of ideas online, but nothing like "plotting symbols" like arrows. I am using the mathtex upperarrow symbol but it is quite unconfortable positioning the tex character in the righ X-Y position. Do you know if there is an easier w