在Matplotlib中,可以使用ncol
參數來設置圖例的列數。示例如下:
import matplotlib.pyplot as plt
# 生成數據
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 繪制折線圖
plt.plot(x, y, label='y=x^2')
plt.legend(ncol=2) # 設置圖例為2列
plt.show()
在上面的示例中,plt.legend(ncol=2)
設置了圖例為2列。您可以根據需要調整ncol
參數的值來設置圖例的列數。