Re: [问题] DataFrame挑选特定值后的处理

楼主: IMPOSSIBLEr (I'm possible rrr)   2016-10-14 04:38:39
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~
楼主: IMPOSSIBLEr (I'm possible rrr)   2016-10-14 04:40:00
拍写 手机排版 完全烂掉…我回家再修
作者: jimmy15923 (jimmy)   2016-10-14 10:34:00
太感谢这位高手了!完全符合我的问题~谢谢您!只有一个小问题,如果没vip,其他的值一样会被记录默认是希望没vip就不管这些值 直接为0就好我解决了!加个ELSE BREAK即可,再次感谢您的帮助!!

Links booklink

Contact Us: admin [ a t ] ucptt.com