入门


Matplotlib简介

Matplotlib教程

Matplotlib是一个Python 2D绘图库,是一个数据可视化模块。使用Matplotlib 能够创建多数类型的图表,如条形图,散点图,直方图,饼图,堆叠图,3D 图和地图图表。

Matplotlib官网:http://matplotlib.org/

安装Matplotlib

pip install -i https://pypi.douban.com/simple/ matplotlib

第一个Matplotlib程序

# 编程字典-
import matplotlib.pyplot as plt
plt.plot([1,2,3],[5,7,4])
plt.show()

Matplotlib教程内容导航