标签: python matplotlib
我正在尝试使用
plt.figure(figsize=(8,6)) plt.yscale('log') plt.ylim([1,30]) ax = plt.axes() ax.yaxis.set_major_locator(ticker.FixedLocator([1,10])) plt.legend(loc=0, fontsize="17") plt.show()
但是它只允许我将标签设置为1或10,而不能在两者之间。我还需要更改其他设置吗?