我的数据包括美元钞票的距离和时间。我的数据如下所示:
bid ts latitude longitude
1 123 0 38.40513 41.83777
2 123 23 38.41180 41.68493
3 123 45 42.20771 43.36318
4 123 50 40.22803 43.00208
5 456 0 39.12882 42.73877
6 456 12 38.46078 42.79847
7 456 27 40.53698 42.57617
8 456 19 39.04038 42.17070
9 234 0 39.18274 41.17445
10 234 8 39.58652 43.61317
11 234 15 41.32383 41.49377
12 234 23 40.26008 42.01927
出价 = 账单 ID
ts = t = 0 时从原始数据点计算的时间戳(天)
纬度和经度=位置
该数据显示了美国各地账单 ID 的移动。
我想计算每个类似行组 4 的所有可能组合之间的平方距离和时间差异。例如,对于出价组 123,我想计算距离和时间之间的差异:第 1 行和第 2 行,第 1 行和第 3 行,第 1 行和第 4 行,第 2 行和第 3 行,第 2 和第 4 行,第 3 和第 4 行。
这将为我提供这组出价之间所有可能的计算组合。
我能够在连续行之间使用 dplyr 来做到这一点,如下所示:
detach("package:plyr", unload=TRUE)
library(magrittr)
library(dplyr)
library(geosphere)
deltadata <- group_by(df, bid) %>%
mutate(
dsq = (c(NA,distHaversine(cbind(longitude[-n()], latitude[-n()]),
cbind(longitude[ -1], latitude[ -1]))))^2,
dt = c(NA, diff(ts))
)%>%
ungroup() %>%
filter( ! is.na(dsq) )
deltadata
# A tibble: 21 x 6
bid ts latitude longitude dsq dt
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 123 23 38.41180 41.68493 178299634 23
2 123 45 42.20771 43.36318 198827672092 22
3 123 50 40.22803 43.00208 49480260636 5
4 456 12 38.46078 42.79847 5557152213 12
5 456 27 40.53698 42.57617 53781504422 15
6 456 19 39.04038 42.17070 28958550947 -8
7 234 8 39.58652 43.61317 46044153364 8
8 234 15 41.32383 41.49377 69621429008 7
9 234 23 40.26008 42.01927 15983792199 8
10 345 5 40.25700 41.69525 26203255328 5
# ... with 11 more rows
问题:这仅计算连续行之间的平方距离和时间,即:第1行和第2行,第2行和第3行,第3行和第4行
有没有一种实用的方法可以对每组中所有可能的行组合执行此操作?
我希望我的输出对每个出价进行 6 次计算,如下所示:
# A tibble: 21 x 6
bid ts latitude longitude dsq dt
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 123 23 38.41180 41.68493 178299634 23 (for rows 1 and 2)
2 123 45 42.20771 43.36318 198827672092 22 (for rows 1 and 3)
3 123 50 40.22803 43.00208 49480260636 5 (for rows 1 and 4)
4 123 12 38.46078 42.79847 5557152213 12 (for rows 2 and 3)
5 123 27 40.53698 42.57617 53781504422 15 (for rows 2 and 4)
6 123 19 39.04038 42.17070 28958550947 -8 (for rows 2 and 5)
我是 R 新手,所以任何建议表示赞赏!