R中基于时间间隔的时间序列数据的局部和全局极值点

时间:2012-12-20 08:56:03

标签: r extract time-series max minimum

我是R的新人 实际上,我有一个时间序列数据,我想每隔一小时确定一个极值点。此外,数据包括温度和Date_time列,其中Data_time采用时间戳格式。提取的点应包括本地和全球点。

表名为p2,列温度和date_time。

  temperature   date_time
1      0.34 2007-09-30 00:01:30
2      0.32 2007-09-30 00:03:30
3      0.26 2007-09-30 00:05:30
4      0.21 2007-09-30 00:07:30
5      0.14 2007-09-30 00:09:30
6      0.17 2007-09-30 00:11:30
7      0.16 2007-09-30 00:13:30
8      0.03 2007-09-30 00:15:30
9      0.02 2007-09-30 00:17:30
10     0.01 2007-09-30 00:19:30
11    -0.06 2007-09-30 00:21:30
12    -0.01 2007-09-30 00:23:30
13    -0.10 2007-09-30 00:25:30
14    -0.10 2007-09-30 00:27:30

1 个答案:

答案 0 :(得分:1)

计算每小时的全局极值:

p2$date_time <- as.POSIXct(df$date_time,tz="GMT")
p2$hours <- format(df$date_time,"%Y-%m-%d %H")
library(plyr)

p2_1 <- ddply(p2,.(hours),function(x) data.frame(min.pos=x$date_time[which.min(x$temperature)],
                                         min=min(x$temperature),
                                         max.pos=x$date_time[which.max(x$temperature)],
                                         max=max(x$temperature)))

          hours             min.pos   min             max.pos   max
1 2007-09-30 00 2007-09-30 00:41:31 -0.24 2007-09-30 00:01:30  0.34
2 2007-09-30 01 2007-09-30 01:01:31 -0.25 2007-09-30 01:05:31 -0.16