python matplotlib(1)
Matplotlib 是一个 Python 的 2D绘图库,它以各种硬拷贝格式和跨平台的交互式环境生成出版质量级别的图形。直线图的绘制
import matplotlib.pyplot as plit #pyplot 含matplotlib大部分绘图接口
x = [1,2,3,9]#x轴数据
y = [4,5,7,8]#y轴数据
x1 = [1,6,8,8]#x轴数据
y1 = [5,5,7,8]#
原创
2018-03-11 12:58:50 ·
217 阅读 ·
0 评论