如何使用 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()

运行代码:

  1. 运行 Python 代码。
  2. 浏览器打开图像文件,该图像显示了您的图表。

其他选项:

  • **颜色:**使用 color 参数设置图表颜色。
  • **宽度和高度:**使用 widthheight 参数设置图表宽度和高度。
  • **标记颜色:**使用 marker 参数设置标记颜色。
  • **标记大小:**使用 markersize 参数设置标记大小。
相似内容
更多>