如何在 matplotlib.hlines 中设置标签?

要在 matplotlib.hlines 中设置标签,我们可以采取以下步骤 -

  • 设置图形大小并调整子图之间和周围的填充。

  • 在轴上添加一条水平线,y=1,标签为 y=1,颜色='orange'。

  • 在轴上添加一条水平线,y=2,标签为 y=2,color='red'。

  • 要显示图形,请使用show()方法。

示例

importmatplotlib.pyplotas plt

# Set the figure size

plt.rcParams["figure.figsize"] = [7.00, 3.50]

plt.rcParams["figure.autolayout"] = True

# Add horizontal line

plt.hlines(y=1, xmin=1, xmax=4, lw=7, color='orange')

plt.text(4, 1, 'y=1', ha='left', va='center')

# Add another horizontal line

plt.hlines(y=2, xmin=2, xmax=5, lw=7, color='red')

plt.text(2, 2, 'y=2', ha='right', va='center')

plt.show()

输出结果

它将产生以下输出

以上是 如何在 matplotlib.hlines 中设置标签? 的全部内容, 来源链接: utcz.com/z/363098.html

回到顶部