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

I've created a simple hexbin plot with matplotlib.pyplot. I haven't changed any default settings. My x-axis information ranges from 2003 to 2009, while the y values range from 15 to 35. Rather than writing out 2003, 2004, etc., matplotlib collapses it into 0, 1, 2, ... + 2.003e+03. Is there a simple way to force matplotlib to write out the full numbers?

Thanks,
Mark C.

share|improve this question

1 Answer

up vote 5 down vote accepted

I think you can use the xticks function to set string labels:

nums = arange(2003, 2010)
xticks(nums, (str(n) for n in nums))

EDIT: This is a better way:

gca().xaxis.set_major_formatter(FormatStrFormatter('%d'))

or something like that, anyway. (In older versions of Matplotlib the method was called setMajorFormatter.)

share|improve this answer
don't know from which version, but since Matplotlib 1.0 setMajorFormatter is set_major_formatter. – Bernardo Kyotoku Dec 24 '10 at 21:38
@Bernardo: thanks, I'll change that. – David Zaslavsky Dec 24 '10 at 21:40

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.