如何使用 Matplotlib 库绘制图表?

如何使用 Matplotlib 库绘制图表?

步骤:

  1. 导入 Matplotlib 库
import matplotlib.pyplot as plt
  1. 定义数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
  1. 创建图表
plt.plot(x, y)
  1. 设置图表标题和标签
plt.title("My Plot")
plt.xlabel("X-axis Label")
plt.ylabel("Y-axis Label")
  1. 添加标记
plt.scatter(x, y, label="My Markers")
  1. 设置坐标轴
plt.xlim([min(x), max(x)])
plt.ylim([min(y), max(y)])
  1. 显示图表
plt.show()

示例代码:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]

plt.plot(x, y)
plt.title("My Plot")
plt.xlabel("X-axis Label")
plt.ylabel("Y-axis Label")
plt.show()

结果:

这将创建一个包含两个数据点的图表,其中每个数据点表示一个时间点。

相似内容
更多>