在Python中,plt.legend()函數(shù)用于為圖表添加圖例。圖例是圖表中每個數(shù)據(jù)系列的標(biāo)簽,用于幫助讀者理解圖表中的不同數(shù)據(jù)系列。plt.legend()函數(shù)的常見用法如下:
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')
通過以上幾種用法的組合,可以實現(xiàn)對圖例的靈活控制和定制。