我是 R 新手,如果答案很明显,请原谅我。我也试图寻找答案,但我认为我没有使用正确的术语。
我有两个数据框,每个数据框都包含一个日期时间和一个值
例如数据框 1:
2003-01-01 10:00:00 | 10
2003-01-02 10:00:00 | 5
2003-01-03 10:00:00 | 7
...<snip>...
2003-06-15 10:00:00 | 4.5
2003-06-16 10:00:00 | 4.5
2003-06-17 10:00:00 | 3.5
...<snip>...
2003-11-21 10:00:00 | 3.5
2003-11-22 10:00:00 | 4
2003-11-23 10:00:00 | 4.5
和数据框 2:
2003-01-01 09:00:00 | 2
2003-03-19 12:00:00 | 5
2003-05-14 14:00:00 | 3.5
2003-06-10 14:00:00 | 4
...<snip>...
2003-10-20 14:00:00 | 2
2003-11-22 14:00:00 | 3
如果第一个数据帧中的时间戳在第二个数据帧的时间戳内,我想做的是将这些值相加
例如
2003-01-01 10:00:00 介于 2003-01-01 09:00:00 和 2003-03-19 12:00:00 之间,因此要执行的计算是 10 + 2。
[删除不一致的声明]
我假设在 R 中有一种简单的方法可以做到这一点。作为程序员,我的第一直觉是只使用 for 循环。
编辑:我想要的是类似下面的东西
timestamp | measurement | correction | corrected
2003-01-01 10:00:00 | 10 | 2 | 12
2003-01-02 10:00:00 | 5 | 2 | 7
2003-01-03 10:00:00 | 7 | 2 | 9
...<snip>...
2003-06-15 10:00:00 | 4.5 | 4 | 8.5
2003-06-16 10:00:00 | 4.5 | 4 | 8.5
2003-06-17 10:00:00 | 3.5 | 4 | 7.5
...<snip>...
2003-11-21 10:00:00 | 3.5 | 2 | 5.5
2003-11-22 10:00:00 | 4 | 2 | 6
2003-11-23 10:00:00 | 4.5 | 3 | 7.5
真正重要的是获得正确的值。我已经让它(有点)在多个 for 循环中工作,但我希望能够以“R”方式完成它。
Time from DF1 Time from DF2 Calculation
2003-11-21 10:00:00 >= 2003-10-20 14:00:00 = 3.5 + 2
2003-11-22 10:00:00 >= 2003-10-20 14:00:00 = 4 + 2
2003-11-23 10:00:00 >= 2003-11-22 14:00:00 = 4.5 + 3
编辑2:
我让它与循环一起工作。有更好的方法吗?
library(plyr)
library(lubridate)
df_measurements <- read.table(text = "
2003-01-01 10:00:00 | 10
2003-01-02 10:00:00 | 5
2003-01-03 10:00:00 | 7
2003-06-15 10:00:00 | 4.5
2003-06-16 10:00:00 | 4.5
2003-06-17 10:00:00 | 3.5
2003-11-21 10:00:00 | 3.5
2003-11-22 10:00:00 | 4
2003-11-23 10:00:00 | 4.5", sep = "|")
df_corrections <- read.table(text = "
2003-01-01 09:00:00 | 5.5
2003-05-01 09:00:00 | 6
2003-08-01 09:00:00 | 8", sep = "|")
#Create named columns and remove unneeded
df_measurements$time <- ymd_hms(df_measurements$V1)
df_measurements$obs <- df_measurements$V2
df_measurements$V1 <- NULL
df_measurements$V2 <- NULL
df_corrections$time <- ymd_hms(df_corrections$V1)
df_corrections$offset <- df_corrections$V2
df_corrections$V1 <- NULL
df_corrections$V2 <- NULL
#Get number of corrections
c_length <- nrow(df_corrections)
#Create blank data frame to merge results into
result <- data.frame(time=as.Date(character()), obs=numeric(), correction=numeric(), corrected=numeric(), stringsAsFactors=FALSE )
for(i in c(1:c_length)) {
if(i < c_length) {
subset_m <- df_measurements[df_measurements$time >= df_corrections$time[[i]] & df_measurements$time < df_corrections$time[[i+1]], ]
} else {
#Last correction in correction data frame
subset_m <- df_measurements[df_measurements$time >= df_corrections$time[[i]], ]
}
#Make "correction" column and fill with correction to be used
subset_m[, "correction"] <- rep(df_corrections$offset[[i]], nrow(subset_m))
#Make "corrected" column and fill with corrected value
subset_m$corrected <- subset_m$correction + subset_m$obs
#Combine subset with result
result <- rbind(result, subset_m)
}
print(result)