我真的很感激这个问题的一些帮助,我无法在SO上找到足够接近的例子。
我有两个data.tables,第一个名为customer.table
,包含特定时间戳(AsOfDate
)的成员快照,以及第二个名为activity.table
的表描述营销在ActivityDate
发送给该客户的广告系列。
我想找到客户数据表中每条记录的AsOfDate之前或之前发送给成员的最新ActivityDate(即最长日期)。
我已经看了几个问题(一个接近的问题是:Handle a table with ID repetition),但我不确定如何将条件(ActivityDate< AsOfDate)与Activity的最大值结合起来日期 - 我还想保留连接中两个表的所有列,因为我需要计算ActivityDate和AsOfDate之间的时间。我仍然没有时间使用roll ...
#libraries
library(lubridate)
library(data.table)
#data
customer.table = structure(list(CustomerID = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
4), AsOfDate = structure(c(1435622400, 1435622400, 1435622400,
1435622400, 1435622400, 1435622400, 1435622400, 1435622400, 1435622400,
1435622400, 1394150400), tzone = "UTC", class = c("POSIXct",
"POSIXt")), distance = c(2.17380476584343, 29.4024827688224,
3.01353310956009, 18.4923143452557, 294.878606580665, 11.8870209430565,
9.54438580030996, 24.2192034858273, 15.0069335290262, 10.4513664447137,
18.4923143452557)), .Names = c("CustomerID", "AsOfDate", "distance"
), row.names = c("1", "5", "8", "10", "18", "28", "33", "37",
"45", "47", "101"), class = "data.frame")
activity.table = structure(list(CustomerID = c(3, 5, 8, 10, 4, 10, 2, 2, 5, 7,
5, 8, 4, 6, 10, 6, 5, 4, 2, 5, 5, 6, 5, 5, 10, 8, 6, 4, 5, 8,
7, 1, 8, 10, 7, 8, 4, 1, 1, 10, 9, 7, 4, 6, 9, 10, 8, 3, 5, 8,
1, 4, 4), ActivityDate = structure(c(1330560000, 1368144000,
1332855900, 1337817600, 1370822400, 1365984000, 1337817600, 1368144000,
1331164800, 1331164800, 1394150400, 1394150400, 1396224000, 1393891200,
1393891200, 1398643200, 1396310400, 1399334400, 1399939200, 1403222400,
1402358400, 1404086400, 1425254400, 1426464000, 1426464000, 1426464000,
1427155200, 1429056000, 1429056000, 1429056000, 1363737600, 1332201600,
1330560000, 1433116800, 1433289600, 1433289600, 1338462000, 1366628400,
1335885300, 1427241600, 1427241600, 1427241600, 1430265600, 1430265600,
1430265600, 1430265600, 1365503400, 1338394200, 1430265600, 1430265600,
1432598400, 1433894400, 1426723200), tzone = "UTC", class = c("POSIXct",
"POSIXt")), row.index = 1:53), .Names = c("CustomerID", "ActivityDate",
"row.index"), row.names = c(NA, -53L), class = "data.frame")
# what does the data look like
> head(activity.table)
CustomerID ActivityDate row.index
1 3 2012-03-01 00:00:00 1
2 5 2013-05-10 00:00:00 2
3 8 2012-03-27 13:45:00 3
4 10 2012-05-24 00:00:00 4
5 4 2013-06-10 00:00:00 5
6 10 2013-04-15 00:00:00 6
> head(customer.table)
CustomerID AsOfDate distance
1 1 2015-06-30 2.173805
5 2 2015-06-30 29.402483
8 3 2015-06-30 3.013533
10 4 2015-06-30 18.492314
18 5 2015-06-30 294.878607
28 6 2015-06-30 11.887021
感谢您的协助。
答案 0 :(得分:6)
看起来你正在寻找一个简单的滚动连接。首先,我们将转换为let names = [
["aaa", "bob", "ccc", "26-10-2015 17:50"],
["aaa-1", "bbb-1", "ccc-1", "22-10-2015 11:20"],
["aaa-2", "bbb-2", "bbb-2", "01-03-2015 17:00"]
]
let formatter = NSDateFormatter()
formatter.dateFormat = "dd-MM-yyyy HH:mm"
let sortedDate = names.sort {
let date1 = formatter.dateFromString($0[3])
let date2 = formatter.dateFromString($1[3])
return date1?.timeIntervalSince1970 < date2?.timeIntervalSince1970
}
个对象(请注意我在CRAN上使用最新版本的此解决方案(V 1.9.6 +)
data.table
然后,对于library(data.table) # V 1.9.6+
setDT(customer.table)
setDT(activity.table)
中的每一行,我们将尝试加入customer.table
中最接近的值,同时滚动到无穷大
activity.table
indx <- activity.table[customer.table,
on = c(CustomerID = "CustomerID",
ActivityDate = "AsOfDate"),
roll = Inf,
which = TRUE]
indx
# [1] 51 19 48 52 49 44 35 36 45 34 5
是indx
中与activity.table
中每一行最接近的日期的位置向量。
现在,剩下的就是加入customer.table
customer.table