如何在 Matplotlib 中仅在绘图图例中显示文本标签?
要在绘图图例中仅显示文本标签,可以在 legend 方法的参数中使用 handlelength=0、handletextpad=0 和 fancybox=0。
步骤
设置图形大小并调整子图之间的和周围的边距。
使用 numpy 创建随机的 x 和 y 数据点。
使用 subplots() 方法创建一个图形和一组子图。
使用 plot() 方法绘制 x 和 y 数据点,并使用“锯齿形”作为图例的标签。
使用 legend() 方法将绘图标签放置在图中,并在其参数中使用 handlelength=0、handletextpad=0 和 fancybox=0。
要显示该图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.random.rand(100) y = np.random.rand(100) fig, ax = plt.subplots() ax.plot(x, y, label='Zig-Zag', c="red") ax.legend(loc="upper right", handlelength=0, handletextpad=0, fancybox=True) plt.show()
输出
广告