Scalar Formatting Notation

You can set the formatter back to the old behavior like

    > this:

    > from ticker import OldScalarFormatter a=axes()
    > a.yaxis.set_major_formatter(OldScalarFormatter())

But will that help? It will still fall over to exponential notation
at 1e4. Perhaps a custom formatter will work better for you, eg
examples/custom_ticker1.py.

JDH