溫馨提示×

Matplotlib中怎么設(shè)置圖例的標(biāo)記大小

小億
201
2024-05-11 19:29:47
欄目: 編程語言

在Matplotlib中,可以使用fontsize參數(shù)來設(shè)置圖例的標(biāo)記大小。例如:

import matplotlib.pyplot as plt

# 創(chuàng)建圖例
plt.plot([1, 2, 3], label='Line 1')
plt.plot([3, 2, 1], label='Line 2')
plt.legend(fontsize='large')  # 設(shè)置圖例的標(biāo)記大小為large

plt.show()

在上面的例子中,fontsize='large'將圖例的標(biāo)記大小設(shè)置為大號??梢愿鶕?jù)需要選擇不同的標(biāo)記大小,例如’small’, ‘medium’, ‘large’, 'x-large’等。

0