python - Pandas 将函数应用于组,并过滤​​原始数据框

标签 python pandas dataframe group-by split-apply-combine

我有一个包含对象及其坐标的 DataFrame:

      id        lat         lng
0   3816  18.384001  -66.114799
1   5922  20.766100 -156.434998
2   1527  21.291394 -157.843085
3   1419  21.291394 -157.843085
4   1651  21.291394 -157.843085

多个对象可以具有相同的坐标。数据框很大(数百万条记录)。我有一个坐标为 (target_lat, target_lng) 的目标点。我的目标是尽可能高效地找到数据框中距目标点 X 英里范围内的对象。

我正在使用改编自 this questionhavesine_np 函数。它采用参数(lat_series, lng_series, lat, lng)并有效计算lat_series, lng_series(两个系列)和(lat, lng)之间的所有距离(两个数字)。

现在我的问题是如何使用它来过滤距离并选择原始数据框中的对象。

这是我当前的解决方案:

grouper = df.groupby(['lat', 'lng'], sort=False).grouper
lat_series = grouper.result_index.get_level_values(0)  # lats of unique (lat, lng) pairs
lng_series = grouper.result_index.get_level_values(1)  # lngs of unique (lat, lng) pairs
df['location_index'] = grouper.group_info[0]  # assign index of group back to df
distances = haversine_np(lat_series, lng_series, target_lat, target_lng)
mask = distances <= 50  # let's say 50 miles; boolean mask of size = ngroups
loc_indexes = pd.Series(range(grouper.ngroups))[mask]  # select group indexes by mask
df[df.location_index.isin(loc_indexes)]  # select original records by group indexes

它似乎有效,尽管看起来不可靠,因为当我使用 pd.Series(range(grouper.ngroups))[mask] 选择相关组索引时,我认为分组的级别值自然索引(从 0 到 ngroups-1)。换句话说,我依赖于 grouper.result_index.get_level_values() 中的 i-th 元素对应于带有标签 i< 的组。 grouper.group_info[0] 中的/code>。我找不到更明确的方法来获取该映射。

问题:

  1. 我使用的方法可靠吗?
  2. 有更好的(更安全/更简洁/更高效)的方法吗?

最佳答案

更新: @DennisGolomazov has found out that this "prefiltering" is not going to work properly for longitudes and make a very good example - 这是一个小演示:

In [115]: df
Out[115]:
     id   lat    lng
5  4444  40.0 -121.0
0  1111  40.0 -120.0

In [116]: %paste
threshold = 60
max_lng_factor = 69.17
max_lat_factor = 69.41
target_lat, target_lng = 40, -120
mask = df.lat.sub(target_lat).abs().le(threshold/max_lat_factor) \
       & \
       df.lng.sub(target_lng).abs().le(threshold/max_lng_factor)
x = df.loc[mask, ['lat','lng']].drop_duplicates()
## -- End pasted text --

In [117]: x
Out[117]:
    lat    lng
0  40.0 -120.0

这两个坐标之间的距离小于我们的阈值(60 英里):

In [119]: haversine_np(-120, 40, -121, 40)
Out[119]: 52.895043596886239

结论:我们可以预过滤纬度,但不能预过滤经度:

In [131]: df
Out[131]:
     id   lat    lng
5  4444  40.0 -121.0
0  1111  40.0 -120.0
1  2222  42.0 -121.0

正确的预过滤:

In [132]: mask = df.lat.sub(target_lat).abs().le(threshold/max_lat_factor)
     ...: x = df.loc[mask, ['lat','lng']].drop_duplicates()
     ...:

In [133]: x
Out[133]:
    lat    lng
5  40.0 -121.0
0  40.0 -120.0

检查:

In [135]: df.reset_index() \
     ...:   .merge(x.assign(distance=haversine_np(x.lng, x.lat, target_lng, target_lat))
     ...:           .query("distance <= @threshold"),
     ...:          on=['lat','lng'])
     ...:
Out[135]:
   index    id   lat    lng   distance
0      5  4444  40.0 -121.0  52.895044
1      0  1111  40.0 -120.0   0.000000
<小时/>

旧的、部分不正确的答案:

我会尝试进行预过滤以优化计算。 例如,您可以轻松过滤掉绝对位于“感兴趣的矩形”之外的点。

演示:

threshold = 100

# http://gis.stackexchange.com/questions/142326/calculating-longitude-length-in-miles/142327#142327
max_lng_factor = 69.17
max_lat_factor = 69.41

target_lat, target_lng = 21.29, -157.84

mask = df.lat.sub(target_lat).abs().le(threshold/max_lat_factor) \
       & \
       df.lng.sub(target_lng).abs().le(threshold/max_lng_factor)

x = df.loc[mask, ['lat','lng']].drop_duplicates()

df.reset_index() \
  .merge(x.assign(distance=haversine_np(x.lng, x.lat, target_lng, target_lat))
          .query("distance <= @threshold"),
         on=['lat','lng']) \
  .drop('distance',1) \
  .set_index('index')

结果:

In [142]: df.reset_index() \
     ...:   .merge(x.assign(distance=haversine_np(x.lng, x.lat, target_lng, target_lat))
     ...:           .query("distance <= @threshold"),
     ...:          on=['lat','lng']) \
     ...:   .drop('distance',1) \
     ...:   .set_index('index')
     ...:
Out[142]:
         id        lat         lng
index
1      5922  20.766100 -156.434998
2      1527  21.291394 -157.843085
3      1419  21.291394 -157.843085
4      1651  21.291394 -157.843085

关于python - Pandas 将函数应用于组,并过滤​​原始数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43289135/

相关文章:

python - Django 1.2 : How to connect pre_save signal to class method

python - 设置图例的最大行数

python - 在另一个 1d/2d 向量之后重采样(缩小)2D 向量

python - 使用 NaN 的 DataFrame 逻辑运算

python - 如何使用 Pandas 将水平数据帧结构转换为垂直结构

python - 在 Pandas 中 reshape 宽到长

python - 黑色时如何将BGR图像设置为另一个图像?

python - 从 timedelta 构建 Pandas pd.tseries.offsets

r - 将向量列表转置为来自 data.frame

python - 如何从 pandas 的列表中选择元素?