为了账号安全,请及时绑定邮箱和手机立即绑定

python库之matplotlib的柱状图、直方图、阶梯图、折线图、饼图

标签:
Python

1、柱状图

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']#支持中文标题
classes=['class1','class2','class3']
scores=[70,80,60]
name=['A班','B班','C版']
plt.bar(classes,scores)
plt.title('三班成绩柱状图')
plt.xlabel('班级')
plt.ylabel('成绩')
plt.xticks(classes,name)
plt.text('class1',71,70)
plt.text('class2',81,80)
plt.text('class3',61,60)
plt.show()

https://img1.sycdn.imooc.com/5f5241f90001672f05810462.jpg

2、直方图

import matplotlib as mpl
import matplotlib.pyplot as plt
height=[168,155,182,170,173,161,155,173,176,181,166,172,170]
bins=range(150,191,5)#从150到191,步长为5
plt.hist(height,bins=bins)
plt.show()

https://img4.sycdn.imooc.com/5f52424c00018f1805900436.jpg

3、阶梯图

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']
year=range(2005,2020)
height=[168,155,182,170,173,161,155,173,176,181,166,172,170,180,187]
plt.step(year,height)
plt.show()

https://img4.sycdn.imooc.com/5f5242850001595a05750426.jpg

4、折线图

import matplotlib.pyplot as plt
year=range(2005,2020)
height=[168,155,182,170,173,161,155,173,176,181,166,172,170,180,187]
plt.plot(year,height)
plt.show()

https://img1.sycdn.imooc.com/5f5242e0000129ce05790426.jpg

5、饼图

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']#支持中文标题

labels=['房贷','饮食','出行','教育']
data=[8000,2000,2000,3000]
plt.pie(data,labels=labels,autopct='%1.1f%%')
plt.show()

https://img2.sycdn.imooc.com/5f5243130001013104270391.jpg

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消