📜  matplotlib 添加图例轴 x - Python (1)

📅  最后修改于: 2023-12-03 15:17:35.533000             🧑  作者: Mango

matplotlib 添加图例轴 x - Python

Matplotlib 是一个功能强大的 Python 绘图库,用于创建各种类型的静态、动态和交互式图形。本文将介绍如何使用 Matplotlib 添加图例轴 x。

步骤

  1. 首先,我们需要导入 Matplotlib:
import matplotlib.pyplot as plt
  1. 创建一个图形对象并添加一个子图:
fig, ax = plt.subplots()
  1. 定义 x 轴数据和对应的 y 轴数据:
x = [1, 2, 3, 4, 5]
y = [6, 7, 8, 9, 10]
  1. 使用 plot 函数绘制曲线:
ax.plot(x, y, label='曲线1')
  1. 添加图例轴 x,并设置图例的位置:
ax.legend(loc='upper right')

可用的位置选项有:'best', 'upper right', 'upper left', 'lower left', 'lower right', 'right', 'center left', 'center right', 'lower center', 'upper center', 'center'。根据需要调整图例的位置。

  1. 设置 x 轴和 y 轴的标签:
ax.set_xlabel('X 轴')
ax.set_ylabel('Y 轴')
  1. 最后,显示图形:
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 提供了许多其他功能,可以根据需要探索和使用。