须臾里
搜索
python plot 设置两个坐标轴的范围
2021-10-17
作者: xy 分类:
量化 / 学习笔记
# 设置两个坐标轴的范围 plt.ylim(np.min(y)-1, np.max(y)+1) plt.xlim(0, np.max(x))
python