面向对象绘制折线图、柱形图

                  绘制反映最高气温和最低气温趋势的折线图

# 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()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值