different dimensions for subplots + same x label

Hi Pau,

http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg03134
.html

I'd like to understand the syntax, though...

On the linked page I find:
""ax = axes([0.1, 0.3, 0.8, 0.6])""
and
""The position rectangles are [left, bottom, width, height] in relative
coordinates--that is, fractions of the figure width and height.""
- Is your question about this?

For the shared x label I found something at the wiki, but it was a bit
obscure...

Shared x-axis can be achieved using the follwing line in the example of your
linked page :
a2 = axes([0.1, 0.1, 0.8, 0.15], sharex=ax)
and sharing xlabel means for me just using one xlabel for one plot or do I
miss your intension?

best regards Matthias

ยทยทยท

On Friday 10 April 2009 17:03:20 Pau wrote:

2009/4/10 Pau <vim.unix@...982...>:
> Hello,
>
> is it possible to define the dimensions of a subplot to use 70% of the
> plot surface and the other one 30%?
>
> I'd also like the plots to share the same x label...
>
> how to do it?
>
> thanks