📜  python matplotlib hist 设置轴范围 - Python 代码示例

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

代码示例1
# Basic syntax:
plt.ylim(min,max)
plt.xlim(min,max)

# Example usage:
import matplotlib.pyplot as plt
plt.plot(range(5))
plt.xlim(-5, 5)
plt.ylim(-5, 5)

# Note, this approach is more versatile than using range=[min,max] which
#     only works in some plots, e.g. plt.hist(range(5), range=[-5,5])