You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the axis offset text is always typeset with the format string "%1.10e" followed by some crazy postprocessing in ScalarFormatter._formatSciNotation. I would suggest switching to some "%g"-based format, so that e.g. 1234 doesn't get formatted as "1.234e3" which can hardly be described as "more legible". Probably _formatSciNotation could be simplified a bit too.
@petehuang I appreciate your efforts are triaging through the list of issues, but messages such as this one only reach the (small) participants list and do not actually help bumping the issue.
tacaswell
modified the milestones:
2.1 (next point release),
2.2 (next next feature release)Oct 3, 2017
This issue has been marked "inactive" because it has been 365 days since the last comment. If this issue is still present in recent Matplotlib releases, or the feature request is still wanted, please leave a comment and this label will be removed. If there are no updates in another 30 days, this issue will be automatically closed, but you are free to re-open or create a new issue if needed. We value issue reports, and this procedure is meant to help us resurface and prioritize issues that have not been addressed yet, not make them disappear. Thanks for your help!
Uh oh!
There was an error while loading. Please reload this page.
Currently, the axis offset text is always typeset with the format string "%1.10e" followed by some crazy postprocessing in
ScalarFormatter._formatSciNotation
. I would suggest switching to some "%g"-based format, so that e.g. 1234 doesn't get formatted as "1.234e3" which can hardly be described as "more legible". Probably_formatSciNotation
could be simplified a bit too.Simple example:
Edit: the above is now fixed by the switch of axes.formatter.offset_threshold to 4, but the issue remains with
where the offset text should be "12.320" (or at least "12.32"), not "1.232e1".
The text was updated successfully, but these errors were encountered: