vote up 1 vote down star

Does anybody know how to scale the y-axis with matplotlib? I don't want to change the y-limit, I just want to extend the physical space.

^      ^
|      |
|      |
+----> |
Before +---->
       After

Thanks!

flag

2 Answers

vote up 3 vote down check

just use a larger height value when you instantiate the figure:

from pylab import *
x = linspace(0, 10*pi, 2**10)
y = sin(x)
figure(figsize=(5, 10))
plot(x, y)
show()

where figsize=(width, height) and defaults to (8, 6). values are in inches (the dpi keyword arg can be used to define the dpi for the figure, and there's a default value in your matplotlibrc file)

for a figure already created, i believe there is a set_size_inches(width, height) method.

link|flag
Sometimes it is better to try something :) 'figure' did the right job. Thank you very much! – Roman Glass Dec 30 '08 at 23:29
vote up 2 vote down

Use the subplots_adjust function to control the abount of whitespace:

fig.subplots_adust(bottom=0.05, top=0.95)

There is an icon on the toolbar to do this interactively with a widget

link|flag
Thanks, this works for me, since it just resizes the plot area, i.e. I can make extra space for the xticks. – Yang Feb 3 at 21:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.