如何在 matplotlib 中设置轴范围
您可以使用以下语法在 Matplotlib 中定义绘图的轴范围:
#specify x-axis range plt. xlim (1, 15) #specify y-axis range plt. ylim (1, 30)
以下示例展示了如何在实践中使用此语法。
示例 1:指定两个轴的范围
以下代码显示如何指定两个轴的范围:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify x-axis and y-axis range plt. xlim (1, 15) plt. ylim (1, 30)
示例 2:仅指定 X 轴的范围
以下代码显示如何仅指定 X 轴的范围:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify x-axis range plt. xlim (1, 15)
示例 3:仅指定 Y 轴的范围
以下代码显示如何仅指定 Y 轴的范围:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify y-axis range plt. ylim (1, 30)
其他资源
如何在 Matplotlib 中设置复选标记标签的字体大小
如何增加 Matplotlib 中的绘图大小
如何向 Matplotlib 绘图添加文本