Matplotlib

matplotlib介绍

mat - matrix 矩阵
plot - 画图
lib - library 库

Matplotlib_第1张图片

绘制图像

import matplotlib.pyplot as plt

  1. 准备数据
  2. 创建画布
    plt.figure(figsize=(20, 8), dpi=80)
  3. 绘制图像
    • 折线图
      plt.plot(x, y)
    • 散点图
      plt.scatter(x, y)
    • 柱状图
      统计/对比
      plt.bar(x, height)
    • 直方图
      分布状况
      plt.hist(x, bins, density)
    • 饼图
      plt.pie(x, labels, colors, autopct)
    • 盒图
      plt.boxplot(x)
  1. 保存图像
    plt.savefig(path)
  2. 显示图像
    plt.show()

matplotlib API Reference

你可能感兴趣的:(数据挖掘,python,数据挖掘)