使用R:如何创建带日期的时间序列对象?

时间:2012-07-10 21:44:09

标签: r time-series

我在一年中每小时都有一系列的价值观。是否可以创建一个保留小时和年份值的时间序列对象?

我的代码使用stockprices第1列中的值,但不使用日期:

stockprices.ts <- ts(stockprices[,1],start=1, freq=168)

1 个答案:

答案 0 :(得分:22)

您没有提供数据样本,但SO上有很多其他答案(here for example)来涵盖这个问题。我使用xts进行时间序列工作,尽管还有其他不错的选择。

假设您的数据是两列,您可能通过read.table加载了数据框:

> stockprices <- data.frame(prices=c(1.1,2.2,3.3),
               timestamps=c('2011-01-05 11:00','2011-01-05 12:00','2011-01-05 13:00'))
> stockprices
  prices       timestamps
1    1.1 2011-01-05 11:00
2    2.2 2011-01-05 12:00
3    3.3 2011-01-05 13:00

您可以转换为xts时间序列:

> require(xts)
> stockprices.ts <- xts(stockprices$prices, order.by=as.POSIXct(stockprices$timestamps))
> stockprices.ts
                    [,1]
2011-01-05 11:00:00  1.1
2011-01-05 12:00:00  2.2
2011-01-05 13:00:00  3.3