博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python学习
阅读量:6121 次
发布时间:2019-06-21

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

from __future__ import print_function  import pandas as pd    catering_sale =(r'C:\Users\Administrator\Desktop\catering_sale.xls') #餐饮数据  data = pd.read_excel(catering_sale, index_col = u'日期') #读取数据,指定“日期”列为索引列  print(data)data = data[(data[u'销量'] > 400)&(data[u'销量'] < 5000)] #过滤异常数据  statistics = data.describe() #保存基本统计量  print(type(statistics))statistics.loc['range'] = statistics.loc['max']-statistics.loc['min'] #极差  statistics.loc['var'] = statistics.loc['std']/statistics.loc['mean'] #变异系数  std = 标准差 mean = 平均值statistics.loc['dis'] = statistics.loc['75%']-statistics.loc['25%'] #四分位数间距    print(statistics)
import numpy as np  import matplotlib.pyplot as pt  x = np.arange(0 , 360,step = 10)  print(x)y = np.sin( x*np.pi/180.0 )  print(y)pt.plot(x,y,'ro',color = 'b')  pt.xlim(0,360)  pt.ylim(-1.2,1.2)  pt.title("picture one")  pt.show()   size = 1x = np.arange(size)a = np.random.random(size)b = np.random.random(size)c = np.random.random(size)total_width, n = 0.8, 3width = total_width / nx = x - (total_width - width) / 2for i in np.arange(10):    if i <=  5:        pt.bar(x + i*width, i, width=width, label='a',fc = 'b',ec='black')    else:        pt.bar(x + i*width, -i%5, width=width, label='a',fc = 'b',ec='black')pt.title("picture two")#pt.bar(x + width, b, width=width, label='b')#pt.bar(x + 2 * width, c, width=width, label='c')#pt.legend()pt.show()labels = 'Froges', 'Hogs', 'Dogs', 'Logs'colors = ['yellow','lightskyblue','lightred','orangegreen']fracs = [15, 30, 45, 10]explode = [0, 0.1, 0, 0] # 0.1 凸出这部分,pt.axes(aspect=1)  # set this , Figure is round, otherwise it is an ellipse#autopct ,show percetpt.pie(x=fracs, labels=labels, explode=explode,autopct='%3.1f %%',        shadow=True, labeldistance=1.1, startangle = 90,pctdistance = 0.6         )pt.show()

 

转载于:https://www.cnblogs.com/terry-yu/p/7571299.html

你可能感兴趣的文章
Retrofit 源码剖析-深入
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
网易跟贴这么火,背后的某个力量不可忽视
查看>>
企业级java springboot b2bc商城系统开源源码二次开发-hystrix参数详解(八)
查看>>
java B2B2C 多租户电子商城系统- 整合企业架构的技术点
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
mysql的innodb中事务日志(redo log)ib_logfile
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>