dataIntable中具有不同间隔的findInterval()

时间:2014-03-26 19:39:30

标签: r data.table intervals

我很久以前就问过这个问题了,但尚未找到答案。我不知道这是否在stackoverflow中是合法的,但我重新发布它。

我在R中有一个data.table,我想创建一个新列,找到每个月/月的每个价格的间隔。

可重复的示例:

set.seed(100)
DT <- data.table(year=2000:2009, month=1:10,  price=runif(5*26^2)*100)
intervals <- list(year=2000:2009, month=1:10, interval = sort(round(runif(9)*100)))
intervals <- replicate(10, (sample(10:100,100, replace=T)))
intervals <- t(apply(intervals, 1, sort))
intervals.dt <- data.table(intervals)
intervals.dt[, c("year", "month") := list(rep(2000:2009, each=10), 1:10)]
setkey(intervals.dt, year, month)
setkey(DT, year, month)

我刚试过:

  • 按月/年合并DTintervals.dt data.tables,
  • 创建一个新的intervalsstring列,其中包含所有V *列 一列字符串,(不是很优雅,我承认),最后
  • 将它子串到一个向量,因此我可以在findInterval()中使用它,但解决方案不适用于每一行(!)

所以,之后:

DT <- merge(DT, intervals.dt)
DT <- DT[, intervalsstring := paste(V1, V2, V3, V4, V5, V6, V7, V8, V9, V10)]
DT <- DT[, c("V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9", "V10") := NULL]
DT[, interval := findInterval(price, strsplit(intervalsstring, " ")[[1]])]

我得到了

> DT
      year month     price               intervalsstring interval
   1: 2000     1 30.776611 12 21 36 46 48 51 63 72 91 95        2
   2: 2000     1 62.499648 12 21 36 46 48 51 63 72 91 95        6
   3: 2000     1 53.581115 12 21 36 46 48 51 63 72 91 95        6
   4: 2000     1 48.830599 12 21 36 46 48 51 63 72 91 95        5
   5: 2000     1 33.066053 12 21 36 46 48 51 63 72 91 95        2
---                                                            
3376: 2009    10 33.635924 12 40 45 48 50 65 75 90 96 97        2
3377: 2009    10 38.993769 12 40 45 48 50 65 75 90 96 97        3
3378: 2009    10 75.065820 12 40 45 48 50 65 75 90 96 97        8
3379: 2009    10  6.277403 12 40 45 48 50 65 75 90 96 97        0
3380: 2009    10 64.189162 12 40 45 48 50 65 75 90 96 97        7

对于第一行是正确的,但对于最后一行(或其他)行不是。 例如,对于行3380,价格~64.19应该在第5个间隔而不是第7个。我想我的错误是,通过我的上一个命令,找到Intervals只依赖intervalsstring的第一行。

谢谢!

1 个答案:

答案 0 :(得分:9)

你的主要问题是你没有为每个小组做findInterval。但我也没有看到制作大型合并data.tablepaste / strsplit业务的重点。这就是我要做的事情:

DT[, interval := findInterval(price,
                              intervals.dt[.BY][, V1:V10, with = F]),
     by = .(year, month)][]
#      year month     price interval
#   1: 2000     1 30.776611        2
#   2: 2000     1 62.499648        6
#   3: 2000     1 53.581115        6
#   4: 2000     1 48.830599        5
#   5: 2000     1 33.066053        2
#  ---                              
#3376: 2009    10 33.635924        1
#3377: 2009    10 38.993769        1
#3378: 2009    10 75.065820        7
#3379: 2009    10  6.277403        0
#3380: 2009    10 64.189162        5

请注意,intervals.dt[.BY]是一个键控子集。