91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高

Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高

發布時間:2021-08-03 11:58:59 來源:億速云 閱讀:307 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

統計單個紅球和藍球,哪個組合最多,顯示前19組數據

#!/usr/bin/python
# -*- coding:UTF-8 -*-
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import operator
df = pd.read_table('newdata.txt',header=None,sep=',')
tdate = sorted(df.loc[:,0])
# print tdate
h2 = df.loc[:,1:7:6].values  #取第一列紅球和藍球
# print h2
h3 = df.loc[:,2:7:5].values  #取第二列紅球和藍球
h4 = df.loc[:,3:7:4].values
h5 = df.loc[:,4:7:3].values
h6 = df.loc[:,5:7:2].values
h7 = df.loc[:,6:7:1].values
# tblue = df.loc[:,7]
#將上方切分的所有數據組合到一起
data = np.append(h2, h3, axis = 0)
data = np.append(data, h4, axis = 0)
data = np.append(data, h5, axis = 0)
data = np.append(data, h6, axis = 0)
data = np.append(data, h7, axis = 0)
# print data
data1 = pd.DataFrame(data)
# print data1
#寫入到一個文件中
data1.to_csv('hldata.csv',index=None,header=None)
#讀取文件,將組合進行統計并從大到小排序
f = open("hldata.csv")
count_dict = {}
for line in f.readlines():
  line = line.strip()
  count = count_dict.setdefault(line, 0)
  count += 1
  count_dict[line] = count
sorted_count_dict = sorted(count_dict.iteritems(), key=operator.itemgetter(1), reverse=True)
# for item in sorted_count_dict:
#   print "%s,%d" % (item[0], item[1])
# print sorted_count_dict
fenzu = pd.DataFrame(sorted_count_dict).set_index([0])
#print fenzu
#分別從第一列和第二列取前19個數據放到x y中
x = list(fenzu.index[:19])
y = list(fenzu.values[:19])
print x
print y
#將x對應數值,不然畫圖報錯
s = pd.Series(range(1,len(x)+1), index=x)
#設置畫圖屬性
plt.figure(figsize=(12,6),dpi=80)
plt.legend(loc='best')
# plt.plot(fenzu,color='red')
plt.bar(s,y,alpha=.5, color='r',width=0.8)
plt.title('The one red and one blue ball number')
plt.xlabel('one red and one blue number')
plt.ylabel('times')
#可以在圖中放置標簽字符
# for i in range(0,19):
#   plt.text(int(i+1.4),25,x[i],color='b',size=10)
# plt.text(1.4,20,x[0],color='g',ha='center')
#將['1,12', '26,9', '5,13']這樣的字符放到圖中
plt.xticks(s,x, rotation=10,size=10,ha='left')
plt.show()

結果如下:

Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高

可以看出紅球1和藍球12出現過的次數最多,其次是紅球26和藍球9

參考:

import matplotlib.pyplot as plt
import numpy as np
plt.rc('font', family='SimHei', size=13)
num = np.array([13325, 9403, 9227, 8651])
ratio = np.array([0.75, 0.76, 0.72, 0.75])
men = num * ratio
women = num * (1-ratio)
x = ['聊天','支付','團購\n優惠券','在線視頻']
width = 0.5
idx = np.arange(len(x))
plt.bar(idx, men, width, color='red', label='男性用戶')
plt.bar(idx, women, width, bottom=men, color='yellow', label='女性用戶')
plt.xlabel('應用類別')
plt.ylabel('男女分布')
plt.xticks(idx+width/2, x, rotation=40)
plt.legend()

Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高

關于“Python數據分析之如何實現雙色球統計單個紅和藍球哪個比例高”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东阿县| 普宁市| 阜康市| 荣昌县| 英吉沙县| 甘孜县| 临清市| 津南区| 阿坝县| 内丘县| 平罗县| 丹阳市| 水富县| 榆林市| 浮山县| 霍州市| 建平县| 芜湖市| 灌云县| 长春市| 黔西| 阳泉市| 任丘市| 外汇| 天津市| 泸西县| 丹巴县| 永泰县| 大宁县| 天等县| 岱山县| 太保市| 慈利县| 伊春市| 富源县| 逊克县| 任丘市| 兴山县| 山丹县| 安徽省| 凤阳县|