溫馨提示×

Matplotlib中怎么設(shè)置圖例的字體大小

小億
227
2024-05-11 18:52:50
欄目: 編程語言

要設(shè)置Matplotlib圖例的字體大小,可以使用fontsize參數(shù)來指定字體大小。以下是一個(gè)示例代碼:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]

plt.plot(x, y, label='data')
plt.legend(fontsize='large')  # 設(shè)置圖例的字體大小為large
plt.show()

在上面的示例中,plt.legend(fontsize='large')語句指定了圖例的字體大小為large。您可以根據(jù)需要將fontsize參數(shù)設(shè)置為不同的值,如small, medium, large, x-large等。您也可以直接指定字體的大小,比如plt.legend(fontsize=12)

0