Re: [問題] DataFrame挑選特定值後的處理

看板Python作者 (I'm possible rrr)時間9年前 (2016/10/14 04:38), 9年前編輯推噓2(203)
留言5則, 2人參與, 最新討論串2/2 (看更多)
If I understand the question correctly, this is really straightforward and can be done in 1 pass. Code as following def vip_partitioning(arr): before = {} after = {} seen_vip = False for x in arr: if x == 'vip': seen_vip = True continue if seen_vip: if x in after: after[x] += 1 else: after[x] = 1 else: if x in before: before[x] += 1 else: before[x] = 1 Then you have before and after which maps the Value in the array to its occurrences. The idea is if the array value not in the dict, it means the occurrence is 0. Let me know if I am understanding this correctly. Best~ -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 208.91.2.4 ※ 文章網址: https://www.ptt.cc/bbs/Python/M.1476391122.A.308.html ※ 編輯: IMPOSSIBLEr (208.91.2.4), 10/14/2016 04:39:45

10/14 04:40, , 1F
拍寫 手機排版 完全爛掉…我回家再修
10/14 04:40, 1F

10/14 10:34, , 2F
太感謝這位高手了!完全符合我的問題~謝謝您!
10/14 10:34, 2F

10/14 10:36, , 3F
只有一個小問題,如果沒vip,其他的值一樣會被記錄
10/14 10:36, 3F

10/14 10:36, , 4F
預設是希望沒vip就不管這些值 直接為0就好
10/14 10:36, 4F

10/14 10:39, , 5F
我解決了!加個ELSE BREAK即可,再次感謝您的幫助!!
10/14 10:39, 5F
文章代碼(AID): #1N__3IC8 (Python)
文章代碼(AID): #1N__3IC8 (Python)