Matplotlib中怎么設(shè)置圖例的列數(shù)

小億
124
2024-05-11 19:28:47

在Matplotlib中,可以使用ncol參數(shù)來(lái)設(shè)置圖例的列數(shù)。示例如下:

import matplotlib.pyplot as plt

# 生成數(shù)據(jù)
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]

# 繪制折線圖
plt.plot(x, y, label='y=x^2')
plt.legend(ncol=2)  # 設(shè)置圖例為2列
plt.show()

在上面的示例中,plt.legend(ncol=2)設(shè)置了圖例為2列。您可以根據(jù)需要調(diào)整ncol參數(shù)的值來(lái)設(shè)置圖例的列數(shù)。

0