四.学习matplotlib

1.什么是matplotlib

为什么学习matplotlib

1.能可视化,直观

2.使数据更加客观,更具说服力。

什么是matplotlib:简而言之模仿matlab来绘制图。

from matplotlib import pyplot as plt ——导入pyplot

例题:假设一天中每隔两个小时(range(2,26,2))的气温分别是{15,13,14,5,17,20,25,26,26,27,22,18,15}

解题:

1
2
3
4
5
6
7
8
9
from matplotlib import pyplot

x = range(2,26,2)
y =[15,13,14,5,17,20,25,26,26,27,22,18,15]

pyplot.figure(figsize=(20,8),dpi=80)

pyplot.plot(x,y)
pyplot.show()