我有大文件,我需要计算不同记录的时间差。为了说明,MWE提供
数据数据框df:
st time from to type size flg fid src dst no ID
+ 0.163944 2 1 a 40 ------- 1 2.4 5.4 0 10
+ 0.215400 2 1 a 40 ------- 1 2.4 5.4 1 28
+ 0.239528 2 1 t 40 ------- 1 2.4 5.4 0 37
+ 0.287784 2 1 t 1040 ------- 1 2.4 5.4 1 62
+ 0.287784 2 1 t 1040 ------- 1 2.4 5.4 2 63
.......... . . ... .. ....... . . .. . ..
# here should be some more lines with different value such as
- 0.487784 3 0 t 1040 ------- 4 2.8 7.4 2 23
# the above line will be filtered out by the conditions-just ignore it
.......... . . ... .. ....... . . .. . ..
r 0.188072 0 5 a 40 ------- 1 2.4 5.4 0 10
r 0.239528 0 5 a 40 ------- 1 2.4 5.4 1 28
r 0.263656 0 5 t 40 ------- 1 2.4 5.4 0 37
r 0.317128 0 5 t 1040 ------- 1 2.4 5.4 1 62
r 0.318792 0 5 t 1040 ------- 1 2.4 5.4 2 63
条件 1:对于每条以“+”开头的记录,“ID”将是唯一的。“src”、“dst”和“from”被添加到条件中。基于此信息,“时间”字段将被记录为数组中的开始(即数组[ID]=时间)。
条件 2:对于以“r”开头的每条记录,将检查“ID”。基于此信息,所需的时间差将是:当前“时间” - 数组 [ID]。
我已经创建了 R 代码并且它有效。但是,我使用的是固定的 src 和 dst 值。src 的格式: xy ,其中 x 始终 =2 并且 y 正在变化(即 y=0,1,2,3,4,.......)。此外, dst: zf ,其中 z 和 f 正在变化(即可能是 4.3,5.2,6.100 ....)
R代码:
src<-"2.4" # this value should be automated like 2.y. Any suggestions !!!
dst<-"5.4" # this value should be automated like z.f
ReqTime<-0
timeHolder<-c()
#start
start<-df[df[, "st"] == "+" &
df[, "from"] == 2 &
# the src and dst should be automated
df[, "src"] == src &
df[, "dst"] == dst,]
timeHolder[start$ID]<-start$time
#end
end<-df[df[, "st"] == "r" &
df[, "from"] == 0 &
df[, "src"] == src &
df[, "dst"] == dst,]
if(!is.null(timeHolder[end$ID])){
ReqTime<- end$time- timeHolder[end$pktID]
}
cat("Time from ",src,"--",dst,": ",ReqTime,"\n")
}
预期输出:
Time from 2.4 -- 5.4 : 0.024128 0.024128 0.024128 0.029344 0.031008
如果我能得到如下输出,则非常感谢:
Time from 2.4 -- 5.4 : mean( 0.024128 0.024128 0.024128 0.029344 0.031008) which is =0.0265472