1. 首页
  2. 数据库
  3. 其它
  4. (超详细!)[数据分析]matplotlib、numpy 笔记

(超详细!)[数据分析]matplotlib、numpy 笔记

上传者: 2020-12-22 23:47:11上传 PDF文件 29.18KB 热度 14次
Note: 数据分析 pip 源 :-i https://pypi.tuna.tsinghua.edu.cn/simple 一、matplotlib 1. 折线图 1)基本定义 from matplotlib import pyplot as plt x = range(2, 26, 2) y = [15, 13, 14. 5, 17, 20, 25, 26, 26, 24, 22, 18, 15] # 绘图 plt.plot(x, y) plt.show() 原创文章 3获赞 3访问量 165
用户评论