如何强制 matplotlib 写出 x 轴标签的完整形式,避免使用科学计数法?
我使用 matplotlib.pyplot 创建了一个简单的十六进制图。我没有更改任何默认设置。我的 x 轴信息范围从 2003 到 2009,而 y 值范围从 15 到 35。matplotlib 没有写出 2003、2004 等,而是将其折叠为 0、1、2、... + 2.003e+03 。有没有一种简单的方法可以强制 matplotlib 写出完整的数字?
谢谢,
马克·C.
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用
xticks
函数 设置字符串标签:编辑:这是一个更好的方法:
或者类似的东西,无论如何。 (在旧版本的 Matplotlib 中,该方法称为 setMajorFormatter。)
I think you can use the
xticks
function to set string labels:EDIT: This is a better way:
or something like that, anyway. (In older versions of Matplotlib the method was called
setMajorFormatter
.)