将轴formatt更改为整数

时间:2018-07-13 15:07:10

标签: python matplotlib axis-labels

我有以下格式的数据:

 Temperatura   Res Germanio 
2  285.47008547   172.283272283
3  285.592185592  171.916971917
4  285.836385836  171.672771673
5  286.324786325  171.428571429
6  286.446886447  171.062271062....

我正在使用matplotlib进行绘图,

plt.plot(df['Temperatura'], df['Res Germanio'])
plt.xticks(np.arange(100, 300, step=50))
plt.yticks(np.arange(100, 200, step=20))
plt.show()

我也尝试了另一篇文章建议的修复程序:

plt.plot(df['Temperatura'], df['Res Germanio'])
plt.xticks(np.arange(min(df['Temperatura']), max(df['Temperatura'])+1, 10.0))
plt.show()
plt.show()

这也不起作用。

但是我无法获得合理的坐标轴:

enter image description here

我应该使用什么代码?

0 个答案:

没有答案