为了账号安全,请及时绑定邮箱和手机立即绑定

FixFormatter_shoul_only_be_used_together_with

FixFormatter_shoul_only_be_used_together_with

慕仙森 2023-07-18 15:12:27
我有一个简单的条形图,上面有一个折线图。import numpy as npimport matplotlib.pyplot as pltx = np.array(["one", "two", "three", "four"])a = np.array([1, 2, 3, 4])b = np.array([2, 4, 3, 1])fig, ax1 = plt.subplots()ax2 = ax1.twinx()ax1.bar(x, a, color="g")ax2.plot(x, b, color="r")# Problem is here.ax1.set_xticklabels(x, rotation="vertical", size=12)plt.show()当我运行它时,它工作正常。但我收到这个警告:"""<ipython-input-65-9b40369b760b>:15: UserWarning: FixedFormatter should only be used together with FixedLocator  ax1.set_xticklabels(x, rotation="vertical", size=12)"""我需要知道的是如何避免这个警告。
查看完整描述

1 回答

?
jeck猫

TA贡献1909条经验 获得超7个赞

这似乎是最新版本的一个错误。

他们的解决方案似乎是xticks在设置标签之前进行设置,因此对于您来说,我们只需在标签之前添加以下内容:

ax1.set_xticks(x)
ax1.set_xticklabels(x, rotation="vertical", size=12)

至少我这边的警告被删除了。


查看完整回答
反对 回复 2023-07-18
  • 1 回答
  • 0 关注
  • 119 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信