python 中列表怎么分區(qū)間統(tǒng)計(jì)
問題描述
list= [ ..., 2648, 2648, 2648, 63370, 63370, 425, 425, 120, 120, 217, 217, 189, 189, 128, 128, 115, 115, 197, 19752, 152, 152, 275, 275, 1716, 1716, 131, 131, 98, 98, 138, 138, 277, 277, 849, 302, 152, 1571, 68, 68, 102, 102, 92, 92, 146, 146, 155, 155, 9181, 9181, 474, 449, 98, 98, 59, 59, 295, 101, ...]for i in list: if int(i/50)+1 not in dic:dic(int(i /50)+1)=list.count(i) else:dic(int(i /50)+1)+=list.count(i)
我這么寫總是報(bào)錯(cuò),我想以 50bp 為一個(gè)區(qū)間進(jìn)行統(tǒng)計(jì),即統(tǒng)計(jì)長(zhǎng)度在 0-50 的頻數(shù),50-100 的頻數(shù)...
我這么寫對(duì)么,應(yīng)該怎么寫呢?
問題解答
回答1:# code for python3from itertools import groupbylst= [ 2648, 2648, 2648, 63370, 63370, 425, 425, 120, 120, 217, 217, 189, 189, 128, 128, 115, 115, 197, 19752, 152, 152, 275, 275, 1716, 1716, 131, 131, 98, 98, 138, 138, 277, 277, 849, 302, 152, 1571, 68, 68, 102, 102, 92, 92, 146, 146, 155, 155, 9181, 9181, 474, 449, 98, 98, 59, 59, 295, 101, 5]for k, g in groupby(sorted(lst), key=lambda x: x//50): print(’{}-{}: {}’.format(k*50, (k+1)*50-1, len(list(g))))
結(jié)果:
0-49: 150-99: 10100-149: 15150-199: 8200-249: 2250-299: 5300-349: 1400-449: 3450-499: 1800-849: 11550-1599: 11700-1749: 22600-2649: 39150-9199: 219750-19799: 163350-63399: 2
不要使用內(nèi)建函數(shù)的名字: list 作為變數(shù)名
你想要的區(qū)間重疊了, 比如說元素 50 就不知道要分在 0-50 還是 50-100 了
存取字典應(yīng)該用 [] 而不是 ()
我回答過的問題: Python-QA
回答2:for i in list i是list中的內(nèi)容,應(yīng)該是for I in range(len(list))
相關(guān)文章:
1. macos - 無法source activate python272. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. javascript - 微信 H5 授權(quán) 返回鍵4. github - 求助大神啊,win10 git clone error,折騰了幾天都不行,以前原本好好的,突然就這樣了5. android - 如何實(shí)現(xiàn)QQ pad 點(diǎn)擊右側(cè)輸入框,只頂右側(cè)的布局,左側(cè)布局不動(dòng)6. javascript - npm run build后調(diào)用api返回index.html7. css - 關(guān)于background-position百分比的問題?8. java - 處理數(shù)據(jù)關(guān)聯(lián)關(guān)系,使用數(shù)據(jù)庫(kù)表外鍵和代碼內(nèi)維護(hù)相比的優(yōu)缺點(diǎn)?9. javascript - node得到req不能得到boolean10. 小白學(xué)python的問題 關(guān)于%d和%s的區(qū)別

網(wǎng)公網(wǎng)安備