我有一個(gè)簡(jiǎn)單的條形圖,上面有一個(gè)折線圖。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()當(dāng)我運(yùn)行它時(shí),它工作正常。但我收到這個(gè)警告:"""<ipython-input-65-9b40369b760b>:15: UserWarning: FixedFormatter should only be used together with FixedLocator ax1.set_xticklabels(x, rotation="vertical", size=12)"""我需要知道的是如何避免這個(gè)警告。
1 回答

jeck貓
TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊
這似乎是最新版本的一個(gè)錯(cuò)誤。
他們的解決方案似乎是xticks
在設(shè)置標(biāo)簽之前進(jìn)行設(shè)置,因此對(duì)于您來(lái)說(shuō),我們只需在標(biāo)簽之前添加以下內(nèi)容:
ax1.set_xticks(x) ax1.set_xticklabels(x,?rotation="vertical",?size=12)
至少我這邊的警告被刪除了。
添加回答
舉報(bào)
0/150
提交
取消