在 Matplotlib 中删除轴刻度相对移位
处理显示跨越重要值的数值范围的图形时,matplotlib 分配相对移位语法 ( 1e3在本例中)到轴刻度。例如,对于绘图:
<code class="python">plot([1000, 1001, 1002], [1, 2, 3])</code>
x 轴刻度可能显示为:
0.0 0.5 1.0 1.5 2.0 +1e3
要消除相对位移并获得如下刻度:
1000.0 1000.5 1001.0 1001.5 1002.0
按照以下步骤操作:
<code class="python">plot([1000, 1001, 1002], [1, 2, 3]) gca().get_xaxis().get_major_formatter().set_useOffset(False) draw()</code>
此技术涉及检索活动轴、获取 x 轴轴对象,然后访问主要格式化程序。通过将 useOffset 属性设置为 False,将禁用相对移位。
或者,在 matplotlib 版本 1.4 及更高版本中,您可以通过调整axes.formatter.useoffset 参数来修改默认行为:
<code class="python">rcParams.update({'axes.formatter.useoffset': False})</code>
以上是如何在 Matplotlib 中禁用轴刻度相对移动?的详细内容。更多信息请关注PHP中文网其他相关文章!