在Python中,plt.legend()函数用于为图表添加图例。图例是图表中每个数据系列的标签,用于帮助读者理解图表中的不同数据系列。plt.legend()函数的常见用法如下:
import matplotlib.pyplot as plt
# 绘制图表
plt.plot(x, y1, label='Curve 1')
plt.plot(x, y2, label='Curve 2')
# 添加图例
plt.legend()
# 显示图表
plt.show()
plt.legend(loc='upper right')
plt.plot(x, y1, label='Custom Label 1')
plt.plot(x, y2, label='Custom Label 2')
plt.legend(fontsize=12, frameon=False, title='Legend Title')
通过以上几种用法的组合,可以实现对图例的灵活控制和定制。