如何使用 Matplotlib 进行数据可视化?

如何使用 Matplotlib 进行数据可视化?

步骤 1:导入必要的库

import matplotlib.pyplot as plt

步骤 2:创建数据可视化

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

plt.plot(x, y)
plt.xlabel("x")
plt.ylabel("y")
plt.title("Data Visualization")
plt.show()

解释:

  • plt.plot(x, y) 创建了 x 和 y 数组的图表。
  • plt.xlabel("x")plt.ylabel("y") 设置了 x 和 y 轴的标签。
  • plt.title("Data Visualization") 设置了图表的标题。
  • plt.show() 显示了图表。

其他选项:

  • plt.scatter(x, y) 创建了散点图。
  • plt.bar(x, y) 创建了条形图。
  • plt.hist(x, bins=10) 创建了频分布图。

其他资源:

  • Matplotlib 文档:matplotlib.org/stable/index.html
  • Matplotlib 教程:matplotlib.org/stable/tutorials/index.html
相似内容
更多>