【发布时间】:2015-12-10 23:01:18
【问题描述】:
我正在尝试找到一种更有效的方法来计算每个案例创建时打开的案例数量。一个案例在其创建日期/时间戳和它的审查日期/时间戳之间是“开放的”。您可以复制粘贴下面的代码来查看一个简单的功能示例:
# Create a bunch of date/time stamps for our example
two_thousand <- as.POSIXct("2000-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_one <- as.POSIXct("2001-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_two <- as.POSIXct("2002-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_three <- as.POSIXct("2003-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_four <- as.POSIXct("2004-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_five <- as.POSIXct("2005-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_six <- as.POSIXct("2006-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_seven <- as.POSIXct("2007-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_eight <- as.POSIXct("2008-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_nine <- as.POSIXct("2009-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_ten <- as.POSIXct("2010-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
two_thousand_eleven <- as.POSIXct("2011-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand <- as.POSIXct("2000-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_one <- as.POSIXct("2001-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_mid_two <- as.POSIXct("2002-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_three <- as.POSIXct("2003-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_four <- as.POSIXct("2004-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_five <- as.POSIXct("2005-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_six <- as.POSIXct("2006-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_seven <- as.POSIXct("2007-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_eight <- as.POSIXct("2008-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_nine <- as.POSIXct("2009-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_ten <- as.POSIXct("2010-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
mid_two_thousand_eleven <- as.POSIXct("2011-06-01 00:00:00", format="%Y-%m-%d %H:%M:%S", tz="UTC", origin="1970-01-01");
# Create a table that has pairs of created & censored date/time stamps for cases, indicating the range during which each case is "open"
comparison_table <- data.table(id = 1:10,
created = c(two_thousand, two_thousand_two, two_thousand_four, two_thousand_six, two_thousand_eight, two_thousand_ten, two_thousand, two_thousand_six, two_thousand_three, two_thousand_one),
censored = c(two_thousand_one, two_thousand_three, two_thousand_five, two_thousand_seven, two_thousand_nine, two_thousand_eleven, two_thousand_five, two_thousand_ten, two_thousand_eight, two_thousand_four));
# Create a table that has the creation date/time stamps at which we want to count all the open cases
check_table <- data.table(id = 1:12,
creation = c(mid_two_thousand, mid_two_thousand_one, mid_two_thousand_mid_two, mid_two_thousand_three, mid_two_thousand_four, mid_two_thousand_five, mid_two_thousand_six, mid_two_thousand_seven, mid_two_thousand_eight, mid_two_thousand_nine, mid_two_thousand_ten, mid_two_thousand_eleven));
# I use the DPLYR library as the group_by() + summarize() functions make this operation simple
library(dplyr);
# Group by id to set parameter for summarize() function
check_table_grouped <- group_by(check_table, id);
# For each id in the table, sum the number of times that its creation date/time stamp is greater than the creation date/time and less than the censor date/time of all cases in the comparison table
# EDIT: Also added timing to compare with method below
system.time(check_table_summary <- summarize(check_table_grouped, other_open_values_at_creation_count = sum((comparison_table$created < creation & comparison_table$censored > creation))));
# Result is as desired
check_table_summary;
# EDIT: Added @David-arenburg's solution with timing
library(data.table);
setDT(check_table)[, creation2 := creation];
setkey(comparison_table, created, censored);
system.time(foverlaps_table <- foverlaps(check_table, comparison_table, by.x = c("creation", "creation2"))[, sum(!is.na(id)), by = i.id]);
# Same results as above
foverlaps_table;
这种方法适用于本例中的小型数据集。但是,即使我使用矢量化操作,计算时间也会呈指数增长,因为操作计数是:(3 * nrow 比较) * (nrow sum(nrow) 计算)。在 nrow=10,000 时,时间约为 14 秒,在 nrow=100,000 时,时间大于 20 分钟。我的实际 nrow 约为 1,000,000。
有没有更有效的方法来做这个计算?我目前正在研究多核选项,但即使这些选项也只会线性减少执行时间。感谢您的帮助。谢谢!
编辑:添加了@David-arenburg 的data.table::foverlaps 解决方案,该解决方案也适用于nrow summarize 解决方案慢。在 10,000 行时,它的长度是原来的两倍。在 50,000 行时,我在 10 倍之后放弃了等待。有趣的是,foverlaps 解决方案似乎不会触发自动垃圾收集,因此始终处于最大 RAM(我的系统上为 64GB),而summarize 解决方案会定期触发自动垃圾收集,因此永远不会超过 ~ 40GB 的 RAM。我不确定这是否与速度差异有关。
最终编辑:我重新编写了问题,使受访者更容易生成具有合适的创建/审查日期时间的大表。我还简化并更清楚地解释了问题,明确说明查找表非常大(违反data.table::foverlaps 假设)。我什至内置了时序比较功能,让大型案例的测试变得超级简单!详情在这里:Efficient method for counting open cases at time of each case's submission in large data set
再次感谢大家的帮助! :)
【问题讨论】:
-
这是一个很好的问题,但仅供参考,您对水平空间的使用有点失控,使您的代码可读性降低。尝试将其限制为每行 80 - 100 个字符。
-
您的实际
comparison_table有多大? -
添加到 Kaashaa 的 Q,你的
check_table有多大? -
@nrussell:我将它优化为在标准显示器上复制粘贴时可读,但你说得对,它使网页上难以阅读。将来我会尽量让一切都更加垂直。感谢您的提示!
-
@Khashaa & @Arun:我已经更仔细地阅读了
foverlaps文档,我认为你们都解决了这个问题:我的比较表非常大,与检查表(~1M 行)。foverlaps函数对于小型比较表是最佳的,这可能就是为什么在超过某个阈值时它比summarize慢的原因。我将提出一个更好的可重现示例,该示例允许轻松增加表大小以比较时间。鉴于我已经发布了几个编辑,我将其作为一个新问题发布。
标签: r performance data.table dplyr vectorization