我有以下数据框:
openModal
我想确定阶段列值的开始和结束日期,例如test_fid的阶段a1从4/22/2019到4/23/2019。结果应如下所示:
cancelUser
我尝试过:
fid date stage
test_fid 4/22/2019 a1
test_fid 4/23/2019 a1
test_fid 4/24/2019 a2
test_fid 4/25/2019 a2
test_fid 4/26/2019 a2
test_fid 4/27/2019 a3
test_fid 4/28/2019 a3
test_fid 4/29/2019 a3
test_fid1 4/30/2019 a1
test_fid1 5/1/2019 a1
test_fid1 5/2/2019 a1
test_fid1 5/3/2019 a1
test_fid1 5/4/2019 a2
test_fid1 5/5/2019 a2
test_fid1 5/6/2019 a2
test_fid1 5/7/2019 a2
test_fid1 5/8/2019 a3
test_fid1 5/9/2019 a3
test_fid1 5/10/2019 a3
答案 0 :(得分:3)
在日期上使用sort_values
,在日期上使用groupby
。然后汇总第一个和最后一个日期。
df.sort_values('date').groupby(['stage','fid']).agg({'date':['first', 'last']}).reset_index()
结果
stage fid date
first last
0 a1 test_fid 2019-04-22 2019-04-23
1 a1 test_fid1 2019-04-30 2019-05-03
2 a2 test_fid 2019-04-24 2019-04-26
3 a2 test_fid1 2019-05-04 2019-05-07
4 a3 test_fid 2019-04-27 2019-04-29
5 a3 test_fid1 2019-05-08 2019-05-10
编辑:我首先转换为日期时间
df['date'] = pd.to_datetime(df['date'])
答案 1 :(得分:3)
您可能忘了将date
列解析为日期对象,可以做到这一点,就像@pythonic这样说:
df['date'] = pd.to_datetime(df['date'])
可能最有效的方法是为每个组计算date
的最小值和最大值,例如:
>>> df.groupby(['fid', 'stage'])['date'].agg({'start_date': 'min', 'end_date':'max'})
start_date end_date
fid stage
test_fid a1 4/22/2019 4/23/2019
a2 4/24/2019 4/26/2019
a3 4/27/2019 4/29/2019
test_fid1 a1 4/30/2019 5/3/2019
a2 5/4/2019 5/7/2019
a3 5/10/2019 5/9/2019
或者,如果您不想使用fid
和stage
作为索引,则可以重置索引:
>>> df.groupby(['fid', 'stage'])['date'].agg({'start_date': 'min', 'end_date':'max'}).reset_index()
fid stage start_date end_date
0 test_fid a1 4/22/2019 4/23/2019
1 test_fid a2 4/24/2019 4/26/2019
2 test_fid a3 4/27/2019 4/29/2019
3 test_fid1 a1 4/30/2019 5/3/2019
4 test_fid1 a2 5/4/2019 5/7/2019
5 test_fid1 a3 5/10/2019 5/9/2019