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