Re: Untitled

From Sole Mosquito, 7 Months ago, written in Plain Text, viewed 180 times. This paste is a reply to Untitled from Sole Shama - go back
URL http://codebin.org/view/9556b4c7/diff Embed
Viewing differences between Untitled and Re: Untitled
#??????? ??????? ??????? ??????? .groupby
agg_data = all_in_one.groupby(['user_id','month']).agg({'distance':'sum','duration':['sum','count']})
#??????? ??????? ? ????????? ??????? ? ???????
agg_data.columns = ['distance_sum', 'duration_sum', 'rides_count']
agg_data = agg_data.reset_index()
#????????? ??????? ??????? ??????? ? ?????
def income_func (row):
    if row['user_id'] in riders_ultra['user_id']:
        return 6*row['duration_sum'].round()+199
    if row['user_id'] in riders_free['user_id']:
        return 8*row['duration_sum']+ 50*row['rides_count']
#??????? ??????? ?? ?????????? ???????, ???????? ??????? ? ?????? ?????? agg_data
agg_data['income'] = agg_data.apply(income_func, axis=1)       
print(agg_data.head(15))
print(agg_data.tail(15))

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Small Bushbaby text 7 Months ago.

Reply to "Re: Untitled"

Here you can reply to the paste above