A good reminder to check that site out. There is alsoTreeMap, which uses
coloured rectangles. http://www.scipy.org/TreeMap
Jessica Lu <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
20/12/2007 05:30 AM
To
cc
Bryan Fodness <[EMAIL PROTECTED]>, matplotlib
Subject
Re: [Matp
There is an example of this on the scipy matplotlib cookbook:
http://www.scipy.org/Cookbook/Matplotlib/ShadedRegions
Cheers,
Jessica
On Dec 18, 2007, at 7:58 PM, John Hunter wrote:
> On Dec 18, 2007 9:47 PM, Bryan Fodness <[EMAIL PROTECTED]>
> wrote:
>> I do want a rectangle. And, I have tri
On Dec 18, 2007 9:47 PM, Bryan Fodness <[EMAIL PROTECTED]> wrote:
> I do want a rectangle. And, I have tried,
>
> axvline(x=x1, ymin=y1, ymax=y2)
> axvline(x=x2, ymin=y1, ymax=y2)
> axhline(y=y1, xmin=x1, xmax=x2)
> axhline(y=y2, xmin=x1, xmax=x2)
>
You can either use the plot function "fill"
I
I do want a rectangle. And, I have tried,
axvline(x=x1, ymin=y1, ymax=y2)
axvline(x=x2, ymin=y1, ymax=y2)
axhline(y=y1, xmin=x1, xmax=x2)
axhline(y=y2, xmin=x1, xmax=x2)
On Dec 18, 2007 10:40 PM, John Hunter <[EMAIL PROTECTED]> wrote:
> On Dec 18, 2007 9:00 PM, Bryan Fodness <[EMAIL PROTECTED]>
On Dec 18, 2007 9:00 PM, Bryan Fodness <[EMAIL PROTECTED]> wrote:
> I would like to draw a polygon using a x1, x2, y1, and y2.
At a minimum, x1, x2, y1, and y2 define a line segment, or at most a
rectangle. You say a "polygon". What exactly do you mean, and what
have you tried (code please)?
JD