📅  最后修改于: 2023-12-03 15:17:35.533000             🧑  作者: Mango
Matplotlib 是一个功能强大的 Python 绘图库,用于创建各种类型的静态、动态和交互式图形。本文将介绍如何使用 Matplotlib 添加图例轴 x。
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
x = [1, 2, 3, 4, 5]
y = [6, 7, 8, 9, 10]
plot
函数绘制曲线:ax.plot(x, y, label='曲线1')
ax.legend(loc='upper right')
可用的位置选项有:'best', 'upper right', 'upper left', 'lower left', 'lower right', 'right', 'center left', 'center right', 'lower center', 'upper center', 'center'。根据需要调整图例的位置。
ax.set_xlabel('X 轴')
ax.set_ylabel('Y 轴')
plt.show()
完整的示例代码如下所示:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
x = [1, 2, 3, 4, 5]
y = [6, 7, 8, 9, 10]
ax.plot(x, y, label='曲线1')
ax.legend(loc='upper right')
ax.set_xlabel('X 轴')
ax.set_ylabel('Y 轴')
plt.show()
以上代码将创建一个简单的曲线图,横坐标为 x,纵坐标为 y,并且添加了图例轴 x,图例位于右上角。
希望这个介绍能帮助你理解如何使用 Matplotlib 添加图例轴 x。Matplotlib 提供了许多其他功能,可以根据需要探索和使用。