Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I set matplotlib to put ticks outside the plot area but now they overlap on the corresponding labels. the tick_params method does not provide any option to set the corresponding labels position. So I guess I will have to write my own function using text() method. In the meanwhile does any one has a better suggestion?

share|improve this question
stackoverflow.com/questions/14711338/… related to – tcaswell Feb 10 at 18:21

1 Answer

up vote 0 down vote accepted

To shift the tick labels relative to the ticks use pad. Compare

ax.tick_params(direction='out', pad=5)
plt.draw()

with

ax.tick_params(direction='out', pad=15)
plt.draw()
share|improve this answer
.........................yes, sorry. – user1850133 Feb 10 at 18:45
@user1850133 no worries. One could argue it should have been a separate question anyway (someone looking for how to adjust the padding would not look at how to flip the ticks). – tcaswell Feb 10 at 20:59
I said sorry because I said "the tick_params method does not provide any option to set the corresponding labels position" while it's not true and I nevertheless checked the documentation but it seems carelessly. – user1850133 Feb 17 at 18:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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