如何在matplotlib中更改轴的限制?

时间:2017-06-26 05:32:57

标签: python matplotlib

我有x轴从0到100开始的情节。我想把它改成10-100。如果有人能提出任何建议,我将不胜感激。感谢

2 个答案:

答案 0 :(得分:1)

如果您只使用pyplot作为简单的情节,可以尝试this function

import matplotlib.pyplot as plt
...
plt.xlim(10, 100)

如果您想设置特定axes,可以尝试this method

import matplotlib.pyplot as plt
...
ax = plt.gca()
ax.set_xlim(10, 100)

答案 1 :(得分:1)

来自SO社区维基here

  

set_xlim()限制绘图上显示的数据。

     

要更改轴的边界,请使用set_xbound()

所以我很确定你真的想要

ax.set_xbound(lower=10, upper=100)