如何在 matplotlib.hlines 中设置标签?
要在 matplotlib.hlines 中设置标签,我们可以采取以下步骤 -
- 设置图形大小并调整子图之间和周围的填充。
- 在轴线上添加一条水平线,y=1,带 y=1 标签,颜色='橙色'。
- 在轴线上添加一条水平线,y=2,带 y=2 标签,颜色='红色'。
- 要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as 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()
输出
将产生以下输出
广告