大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章给大家分享的是有关Python数据分析之双色球中蓝红球分析统计的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
10年积累的成都做网站、成都网站制作经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有铁西免费网站建设让你可以放心的选择与我们合作。具体如下:
newdata.txt数据样子
...
2005-08-21, 05,10,23,27,28,30,15
2005-08-18, 04,05,17,18,26,33,04
2005-08-16, 09,12,18,21,28,29,05
...
一、蓝球统计:
analyze_data_lan.py
#!/usr/bin/python # -*- coding:UTF-8 -*- #调用pandas numpy matplotlib包 import pandas as pd import numpy as np import matplotlib.pyplot as plt #读取newdata.txt文件 df = pd.read_table('newdata.txt',header=None,sep=',') # print df # print df[1:3] #第2到第3行(索引0开始为第一行,1代表第二行,不包含第四行) # print df.loc[0:10,:] #第1行到第9行的全部列 # print df.loc[:,[0,7]] #全部行的第1和第8列 tdate = sorted(df.loc[:,0]) #取第一列数据 # print tdate tdate1 = [] #将tdate数据读取到列表中 for i in tdate: tdate1.append(i) print tdate1 # s = pd.Series(tdate1, index=tdate1) s = pd.Series(range(1,len(tdate1)+1), index=tdate1) #将日期转换为对应的数值从1开始 # print s tblue = list(reversed(df.loc[:,7])) #对数据取反 print tblue fenzu = pd.value_counts(tblue,ascending=False) #将数据进行分组统计,按照统计数降序排序 print fenzu x=list(fenzu.index[:]) #获取蓝色号码 y=list(fenzu.values[:]) #获得蓝色统计数量 print x print y # print type(fenzu) plt.figure(figsize=(10,6),dpi=70) #配置画图大小、和细度 plt.legend(loc='best') # plt.plot(fenzu,color='red') #线图 plt.bar(x,y,alpha=.5, color='b',width=0.8) #直方图参数设置 plt.title('The blue ball number') #标题 plt.xlabel('blue number') #x轴内容 plt.ylabel('times') #y轴内容 plt.show() #显示图
结果输出:
看来蓝球9选中最多
二、红球统计
analyze_data_hong.py
#!/usr/bin/python # -*- coding:UTF-8 -*- import pandas as pd import numpy as np import matplotlib.pyplot as plt #读取文件 df = pd.read_table('newdata.txt',header=None,sep=',') # print df # print df[1:3] # print df.loc[0:10,:] # print df.loc[:,1:6] tdate = sorted(df.loc[:,0]) # print tdate h2 = df.loc[:,1] h3 = df.loc[:,2] h4 = df.loc[:,3] h5 = df.loc[:,4] h6 = df.loc[:,5] h7 = df.loc[:,6] #将数据合并到一起 all = h2.append(h3).append(h4).append(h5).append(h6).append(h7) alldata = list(all) print len(alldata) fenzu = pd.value_counts(all,ascending=False) print fenzu x=list(fenzu.index[:]) y=list(fenzu.values[:]) print x print y # print type(fenzu) plt.figure(figsize=(10,6),dpi=70) plt.legend(loc='best',) # plt.plot(fenzu,color='red') plt.bar(x,y,alpha=.5, color='r',width=0.8) plt.title('The red ball number') plt.xlabel('red number') plt.ylabel('times') plt.show()
结果输出:
红球1、7、14、17、26选中几率高些
感谢各位的阅读!关于“Python数据分析之双色球中蓝红球分析统计的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。