博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python matplotlib 绘图
阅读量:6838 次
发布时间:2019-06-26

本文共 524 字,大约阅读时间需要 1 分钟。

饼图

import matplotlib.pyplot as plt# The slices will be ordered and plotted counter-clockwise.labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'sizes = [15, 30, 45, 10]colors = ['yellowgreen', 'gold', 'lightskyblue', 'lightcoral']explode = (0, 0.1, 0, 0)  # only "explode" the 2nd slice (i.e. 'Hogs')plt.pie(sizes, explode=explode, labels=labels, colors=colors,        autopct='%1.1f%%', shadow=True, startangle=90)# Set aspect ratio to be equal so that pie is drawn as a circle.plt.axis('equal')plt.savefig('D:\\pie.png')plt.show()

 结果

转载地址:http://hlqkl.baihongyu.com/

你可能感兴趣的文章
组成关系映射(注解)
查看>>
时间:2014年3月27日文件和目录操作函数
查看>>
检查Lync SRV记录是否正常
查看>>
RocketMQ的原理与实践
查看>>
三星GT-I9308 Galaxy SIII 移动定制机 root方法 (亲测可用)
查看>>
简洁SDK
查看>>
错误:无法作为数据库主体执行,因为主体 "dbo" 不存在、无法模拟这种类型的主体,或您没有所需的权限...
查看>>
使用for循环遍历文件
查看>>
大数据最清楚王宝强离婚事件到底有多热!
查看>>
container_of分析
查看>>
#define list_entry(ptr, type, member) \ container_of(ptr, type, member)
查看>>
openJDK之lambda——List的forEach如何实现的
查看>>
Exchange 2013部署系列之(十)信息权限保护RMS和Exchange 2013的整合
查看>>
配置Exchange OWA和Sharepoint网站单点登录
查看>>
tomcat7.0 安装启动之后localhost:8080页面进不去,提示错误500
查看>>
SpringMVC图片上传
查看>>
Scrapy 爬虫实例 抓取豆瓣小组信息并保存到mongodb中
查看>>
springCloud学习笔记系列(1)-负载均衡Ribbon
查看>>
ngx_lua中的协程调度(三)
查看>>
PHP开发如何实现多线程?
查看>>