1

如何告诉熊猫DataFrame.plot(subplots=True...) 不要在刻度标签上使用偏移量?

通常对于单个情节,我可以发出:

matplotlib.pyplot.ticklabel_format(axis='y', useOffset=False)

但它似乎不适用于 subplot 选项。

4

1 回答 1

6

使用选项 suplots=True 绘制数据框(此处为 df)会为数据框的每一列创建一个轴。需要在所有轴上进行迭代以设置 ticklabel_format。

In [59]: axes = df.plot(subplots=True)

In [60]: for axis in axes:
   ....:     axis.ticklabel_format(axis='y', useOffset=False)
于 2012-08-27T07:09:19.763 回答