python-3.x - 如何将函数应用于每组数据框

标签 python-3.x pandas pandas-groupby

如何在groupby数据框上应用函数

给定数据框 df。

userid   trip_id        lat         long
141.0      1.0      39.979547   116.306813
141.0      1.0      39.979558   116.306823
141.0      1.0      39.979575   116.306835
141.0      1.0      39.979587   116.306847
141.0      2.0      39.979603   116.306852
141.0      2.0      39.979612   116.306867
141.0      2.0      39.979627   116.306877
141.0      2.0      39.979635   116.306888
141.0      3.0      39.979645   116.306903
141.0      3.0      39.979657   116.306913
141.0      3.0      39.979670   116.306920
141.0      3.0      39.979682   116.306920

我想计算每组数据帧的 Vincenty 距离。数据框分为 2 列,即 (userid,trip_id)

我可以通过给定的语句计算完整数据帧的 vincenty 距离
from geopy.distance import vincenty
df['lat_next'] = df['lat'].shift(-1)
df['long_next'] = df['long'].shift(-1)
df['Vincenty_distance'] = df.dropna().apply(lambda x: vincenty((x['lat'], x['long']), (x['lat_next'], x['long_next'])).meters, axis = 1)
df = df.drop(['lat_next','long_next'], axis=1) 

我想将此功能应用于每个组,我尝试使用此语句但出现错误。
df['Vincenty_distance'] = df.dropna().groupby(['userid','trip_id']).apply(lambda x: vincenty((x['lat'], x['long']), (x['lat_next'], x['long_next'])).meters,axis=1)

我期待以下结果。
userid  trip_id        lat        long        Vincenty_distance
141.0      1.0      39.979547   116.306813         2.563812
141.0      1.0      39.979558   116.306823         2.956183
141.0      1.0      39.979575   116.306835         2.332577
141.0      1.0      39.979587   116.306847           Nan
141.0      2.0      39.979603   116.306852         2.334821
141.0      2.0      39.979612   116.306867         2.332577
141.0      2.0      39.979627   116.306877         1.695449
141.0      2.0      39.979635   116.306888           Nan
141.0      3.0      39.979645   116.306903          1.871784
141.0      3.0      39.979657   116.306913         1.982752
141.0      3.0      39.979670   116.306920         2.220685
141.0      3.0      39.979682   116.306920           Nan

最佳答案

相信您需要 DataFrameGroupBy.shift 用于每组类次 next首先列,所以 groupbyvincenty没有必要:

df = df.join(df.groupby(['userid','trip_id'])[['lat','long']].shift(-1).add_suffix('_next'))
print (df)
    userid  trip_id        lat        long   lat_next   long_next
0    141.0      1.0  39.979547  116.306813  39.979558  116.306823
1    141.0      1.0  39.979558  116.306823  39.979575  116.306835
2    141.0      1.0  39.979575  116.306835  39.979587  116.306847
3    141.0      1.0  39.979587  116.306847        NaN         NaN
4    141.0      2.0  39.979603  116.306852  39.979612  116.306867
5    141.0      2.0  39.979612  116.306867  39.979627  116.306877
6    141.0      2.0  39.979627  116.306877  39.979635  116.306888
7    141.0      2.0  39.979635  116.306888        NaN         NaN
8    141.0      3.0  39.979645  116.306903  39.979657  116.306913
9    141.0      3.0  39.979657  116.306913  39.979670  116.306920
10   141.0      3.0  39.979670  116.306920  39.979682  116.306920
11   141.0      3.0  39.979682  116.306920        NaN         NaN

f = lambda x: vincenty((x['lat'], x['long']), (x['lat_next'], x['long_next'])).meters
df['Vincenty_distance'] = df.dropna().apply(f, axis = 1)
df = df.drop(['lat_next','long_next'], axis=1) 
print (df)
    userid  trip_id        lat        long  Vincenty_distance
0    141.0      1.0  39.979547  116.306813           1.490437
1    141.0      1.0  39.979558  116.306823           2.147940
2    141.0      1.0  39.979575  116.306835           1.681071
3    141.0      1.0  39.979587  116.306847                NaN
4    141.0      2.0  39.979603  116.306852           1.624902
5    141.0      2.0  39.979612  116.306867           1.871784
6    141.0      2.0  39.979627  116.306877           1.293017
7    141.0      2.0  39.979635  116.306888                NaN
8    141.0      3.0  39.979645  116.306903           1.582706
9    141.0      3.0  39.979657  116.306913           1.562388
10   141.0      3.0  39.979670  116.306920           1.332411
11   141.0      3.0  39.979682  116.306920                NaN

关于python-3.x - 如何将函数应用于每组数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53424262/

相关文章:

python - 在Python中正确终止线程

python - 标签中的图像未出现在辅助窗口中(tkinter)

python - 如果需要,使用 SQL 或代码从多个 (4) 表连接中获取结果(python)

python - 将区域分配给字典中的状态时如何修复 KeyError

pandas - 使用元组列表通过 Pandas multiindex 选择值

python - Dataframe groupby - 值列表

python - Pandas 命名聚合不适用于 resample agg

python - 在Python中将元素转换为CSS选择器

python - 计算值介于两个数字之间的行并按不同列进行分组

python - Pandas:使用 iterrows() 和 pd.Series 将值附加到系列