使用 pyplot 在 Python 中绘制多个子图上的水平线
matplotlibpythondata visualization
要在 Python 中在多个子图上绘制水平线,我们可以使用子图获取多个轴和 axhline() 方法绘制水平线。
步骤
创建一个图形和一组子图。在这里,我们将创建 3 个子图。
使用 axhline() 方法在每个轴上绘制水平线。
要显示图形,请使用 show() 方法。
示例
from matplotlib import pyplot as plt fig, (ax1, ax2, ax3) = plt.subplots(3) plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True ax1.axhline(y=0.5, xmin=0, xmax=3, c="black", linewidth=2, zorder=0) ax2.axhline(y=0.5, xmin=0, xmax=3, c="red", linewidth=3, zorder=0) ax3.axhline(y=0.5, xmin=0, xmax=3, c="yellow", linewidth=4, zorder=0) plt.show()