set_scientific(False) doesn't do anything.

Hi -- According to what I've read in the docs, the following code should
render a graph with the Y-Axis NOT in scientific-mode. However this isn't
the case. What am I failing to understand?

import matplotlib.pylab as pylab
pylab.figure()
yfmt = pylab.gca().yaxis.get_major_formatter()
yfmt.set_scientific(False)
pylab.draw()
pylab.plot([110100,110102,110100,110103])
pylab.show()

...I'm running on Ubuntu Intrepid. matplotlib.__version__ reports 0.98.3

Any thoughts?
Thanks!
-Dave

···

--
View this message in context: http://old.nabble.com/set_scientific(False)-doesn't-do-anything.-tp27631188p27631188.html
Sent from the matplotlib - users mailing list archive at Nabble.com.