在Matplotlib中如何在轴标签和图例中编写下标文本?
要在轴标签和图例中编写下标文本,我们可以采取以下步骤−
- 使用NumPy创建x和y数据点。
-
用超级下标文本标记绘制x和y数据点。
-
在文本中使用 xlabel 和 ylabel 与 下标 。
-
使用 legend() 方法在图中放置图例。
-
调整子图之间和周围的填充。
-
使用 show() 方法显示图形。
示例
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(1, 10, 1000)
y = np.exp(x)
plt.plot(x, y, label=r'e^x', c="red", lw=2)
plt.xlabel("X_{axis}")
plt.ylabel("Y_{axis}")
plt.legend(loc='upper left')
plt.show()