Set frequency in xts object

孤街浪徒 提交于 2019-11-30 00:08:14

问题


I want to create an xts object in R, which I then want to decompose to seasonal and trend.

> require(xts)
> require(lubridate) 
> chicos$date <- ymd(chicos$date)
> ctr.ts <- xts(chicos[, 7], order.by = chicos[, 8], frequency = 365)
> plot(ctr.ts, main="Meaningful title")

When I try to decompose it, I get this error message..

> plot(decompose(ctr.ts))
Error in decompose(ctr.ts) : time series has no or less than 2 periods

My observations are daily, and span from 2014-12-01 to 2015-02-25. Did I set the wrong frequency?


回答1:


For the frequency of the time series of type xts: By default xts has a daily frequency, So you don't need to include any frequency if it is daily:

 ctr.xts <- xts(chicos[, 7], order.by = chicos[, 8])

The R function decompose() works only with objects of type ts. So, you may like to convert the xts object to ts by issuing the following lines:

attr(ctr.xts, 'frequency') <- 7  # Set the frequency of the xts object to weekly
periodicity(ctr.xts)             # check periodicity: weekly 
plot(decompose(as.ts(ctr.xts)))  # Decompose after conversion to ts

Also, you may like to try different frequencies:

  • monthly: 12
  • yearly: 365

Hope this may help.



来源:https://stackoverflow.com/questions/28744218/set-frequency-in-xts-object

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!