我有一个熊猫数据框df
,具有连续的start_date
和end_date
范围,并且每个用户只有一个ref_date
:
users = {'user_id': ['A','A','A','A', 'B','B','B'],
'start_date': ['2017-03-07', '2017-03-12', '2017-04-04', '2017-05-22', '2018-12-01', '2018-12-23', '2018-12-29'],
'end_date': ['2017-03-11', '2017-04-03', '2017-05-21', '2222-12-31', '2018-12-22', '2018-12-28', '2222-12-31'],
'status': ['S1', 'S2', 'S1', 'S3', 'S1', 'S2', 'S1'],
'score': [1000, 1000, 1000, 1000, 900, 900, 1500],
'ref_date': ['2017-05-22', '2017-05-22', '2017-05-22', '2017-05-22', '2019-01-19', '2019-01-19', '2019-01-19']
}
df = pd.DataFrame(users, columns = ['user_id', 'start_date', 'end_date', 'status', 'score', 'ref_date'])
print(df)
user_id start_date end_date status score ref_date
0 A 2017-03-07 2017-03-11 S1 1000 2017-05-22
1 A 2017-03-12 2017-04-03 S2 1000 2017-05-22
2 A 2017-04-04 2017-05-21 S1 1000 2017-05-22
3 A 2017-05-22 2222-12-31 S3 1000 2017-05-22
4 B 2018-12-01 2018-12-22 S1 900 2019-01-19
5 B 2018-12-23 2018-12-28 S2 900 2019-01-19
6 B 2018-12-29 2222-12-31 S1 1500 2019-01-19
我想计算每个用户最近x个月的关键数字(x = 1、3、6、12)在每个引用日期之前,例如:
ref_date
ref_date
之前的最近x个月中分数的增加
ref_date
之前最近x个月的平均每日得分结果应如下所示(希望我正确进行了计算):
user_id ref_date nday_s1_last3m nday_s2_last3m nday_s3_last3m \
0 A 2017-05-22 53 23 0
1 B 2019-01-19 43 6 0
ninc_score_last3m avg_score_last3m
0 0 1000.00
1 1 1157.14
问题在于,ref_date
-x个月可能会在一个现有的start_date
/ end_date
间隔之间,甚至是在第一个start_date
之前间隔,在这种情况下,时间“开始”在第一个start_date
上。重采样是可行的,但如果一个拥有数百万用户和许多日期范围的数据帧,则会创建巨大的数据帧;我的内存不足。有什么建议吗?
要注意的详细信息:之前 ref_date
的意思是ref_date-1
答案 0 :(得分:1)
我将首先计算实际的开始和结束日期,分别是start_date和ref_date减去3个月的高低,以及end_date和ref_date。一旦完成,天数,分数增加和平均值将很容易计算:
代码可能是:
# convert date columns to datetimes
for col in ['start_date', 'end_date', 'ref_date']:
df[col] = pd.to_datetime(df[col])
# compute ref_date minus 3 months
ref = df.ref_date - pd.offsets.MonthOffset(3)
# compute the real start and end dates
tmp = df.loc[(df.end_date >= ref)&(df.start_date < df.ref_date),
['start_date', 'end_date']].copy()
tmp.loc[df.start_date < ref, 'start_date'] = ref-pd.Timedelta('1D')
tmp.loc[df.end_date >= df.ref_date, 'end_date'] = df.ref_date-pd.Timedelta('1D')
# add the relevant columns to the temp dataframe
tmp['days'] = (tmp.end_date - tmp.start_date).dt.days + 1
tmp['score'] = df.score
tmp['status'] = df.status
# build a list of result fields per user
data =[]
for i in df.user_id.unique():
# user_id, ref_date
d = [i, df.loc[df.user_id == i, 'ref_date'].iat[0]]
data.append(d)
# extract data for that user
x = tmp[df.loc[tmp.index,'user_id'] == i]
# number of days per status
d.extend(x.groupby('status')['days'].sum().reindex(df.status.unique())
.fillna(0).astype('int').tolist())
# increase and average score
d.extend((np.sum(np.where(x.score > x.score.shift(), 1, 0)),
np.average(x.score, weights=x.days)))
# build the resulting dataframe
resul = pd.DataFrame(data, columns=['user_id', 'ref_date', 'nday_s1_last3m',
'nday_s2_last3m', 'nday_s3_last3m',
'ninc_score_last3m', 'avg_score_last3m'])
它给出了预期的结果:
user_id ref_date nday_s1_last3m nday_s2_last3m nday_s3_last3m ninc_score_last3m avg_score_last3m
0 A 2017-05-22 53 23 0 0 1000.000000
1 B 2019-01-19 43 6 0 1 1157.142857