📜  如何设置轴范围 matplotlib - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:58.771000             🧑  作者: Mango

代码示例1
# For a given y=time-dependent variable, x=time
fig, ax = plt.subplots(figsize=(12, 6))

ax.plot(y, label='y')
#'lower' is lower limit of the range you wanna set
#'upper' is upper limit of the range you wanna set
plt.xlim(lower, upper)