I am plotting a dataset using matplotlib where I have an xlabel that is quite "tall" (it's a formula rendered in TeX that contains a fraction and is therefore has the height equivalent of a couple of lines of text).

In any case, the bottom of the formula is always cut off when I draw the figures. Changing figure size doesn't seem to help this, and I haven't been able to figure out how to shift the x-axis "up" to make room for the xlabel. Something like that would be a reasonable temporary solution, but what would be nice would be to have a way to make matplotlib recognize automatically that the label is cut off and resize accordingly.

Any ideas?

Thanks in advance, Andrew

here's an example of what I mean:

import matplotlib.pyplot as plt

plt.figure()
plt.ylabel(r'$\ln\left(\frac{x_a-x_b}{x_a-x_c}\right)$')
plt.xlabel(r'$\ln\left(\frac{x_a-x_d}{x_a-x_e}\right)$')
plt.show()

you'll see from this, while you can see the entire ylabel, the xlabel is cut off at the bottom. cheers.

**In the case this is a machine-specific problem, I am running this on OSX 10.6.8 with matplotlib 1.0.0

link|improve this question
1  
You could post on an image hosting site and link it here. – agf Jul 21 '11 at 9:39
1  
It helps if you can post a minimalistic sample code that triggers this issue. This way, people can understand and reproduce your problem faster, and they will be more likely to help you. – Denilson Sá Jul 21 '11 at 9:40
Your code works just fine (display the formula fully visible) on my machine (ubuntu 11.04 64bit). Maybe is a machine-specific problem [like a font with wrong dimensional information being used in the image?]. You could perhaps specify the system you are using in your question. – mac Jul 21 '11 at 10:21
feedback

1 Answer

Use:

gcf().subplots_adjust(bottom=0.15)

to make room for the label.

link|improve this answer
excellent. that did the trick. thanks very much. – Andrew Jul 21 '11 at 16:15
I find it pretty weird that one would need to make an extra call to make room for an essential part of a plot. What's the reasoning behind this? – a different ben Apr 9 at 8:09
feedback

Your Answer

 
or
required, but never shown

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