【数据分析介绍和环境安装】01数据分析的介绍
数据分析:利用适当的方法对收集的啊大量数据进行分析,帮助人们做出判断,以便采取适当行动。
分析流程:
【数据分析介绍和环境安装】02jupyter和conda的使用
【matplotlib折线图】01matplotlib的基础绘图
绘制一天的气温变化
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) 传入x和y,生成折线图
plt.show() 执行程序的时候展示图像
【matplotlib折线图】02matplotlib的基础绘图和调整x轴的刻度
设置图片大小:
【matplotlib折线图】03matplotlib的绘制10点到12点的气温
matplotlib设置显示中文
【matplotlib折线图】05matplotlib的设置图形信息
【matplotlib折线图】mp绘制多次图形和不同图形的差异介绍和总结