Matplotlib 图例中的文本对齐方式
要在 Matplotlib 图例中设置文本对齐方式,可以采取以下步骤 −
- 设置图形大小并调整子图之间和周围的填充。
-
使用 Numpy 创建 x 数据点。
-
使用 plot() 方法绘制 x、sin(x) 和 cos(x)。
-
使用 legend() 方法放置图例并初始化方法。
-
使用 legend.get_texts() 方法迭代来设置水平对齐方式。
-
使用 show() 方法显示图形。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(-5, 5, 100)
plt.plot(x, np.sin(x), label="y=sin(x)")
plt.plot(x, np.cos(x), label="y=cos(x)")
legend = plt.legend(loc='upper right')
for t in legend.get_texts():
t.set_ha('left')
plt.show()