假设你的 DateTime 字符向量的格式总是"YYYYMMDD"
那么你可以使用ddply
函数 fromplyr
来得到你想要的:
require(plyr)
df$Date <- substr( df$DateTime , 1 , 8 )
ddply( df , .(Date) , summarise , Diff = diff(c(0,Profit)) )
# Date Diff
#1 20130319 5
#2 20130319 130
#3 20130319 110
#4 20130320 10
#5 20130320 105
使用 base 的另一种方法ave
:
within(df, { Profit_diff <- ave(Profit, list(gsub("T.*$", "", DateTime)),
FUN=function(x) c(x[1], diff(x)))})
# DateTime Profit Profit_diff
# 1 20130319T01 5 5
# 2 20130319T02 135 130
# 3 20130319T03 245 110
# 4 20130320T01 10 10
# 5 20130320T02 115 105