绘制反映最高气温和最低气温趋势的折线图
# 01_maximum_minimum_temperatures
import matplot1ib. pyplot as plt
import numpy as np
#准备数据
x=np.arange(4,19)
y_max = np.array([32,33,34,34,33,31,30,29,30,29,26,23,21,25, 31])
y_min = np.array([19, 19,20,22,22,21,22,16,18,18,17,14, 15, 16, 16])
#创建代表画布的Figure类的对象fig
fig = plt.figure ()
#在画布fig上添加坐标系风格的绘图区域ax
ax = fig.add_subp1ot(111)
#绘制折线图
plt.plot(x, y_max)
plt.plot(x, y_min)
plt.show()
#日期为x轴的数据,最高气温和最低气温为y轴数据
绘制条形柱形图
import numpy as np
import matplot1ib.pyplot as plt
#准备数据
fig=plt.figure ()
ax=fig.add_subplot(111)
x=np.arange(5)
y1=np.array([26, 22,20,19,24])
y2=np.array([16,17,11,14,16])
#柱形的宽度
bar_width=0.3
#根据多组数据绘制条形图
plt.bar(x,y1,tick_label=['a','b','c','d','e'],width=bar_width,color='orange') plt.bar(x+bar_width,y2,width=bar_width,color='blue')
plt. show()