我下面有具有半小时时间序列数据的数据集。
Date <- c("2018-01-01 08:00:00", "2018-01-01 08:30:00",
"2018-01-01 08:59:59","2018-01-01 09:29:59")
Volume <- c(195, 188, 345, 123)
Dataset <- data.frame(Date, Volume)
我使用以下方法将日期转换为日期格式:
Dataset$Date <- as.POSIXct(Dataset$Date)
创建xts对象
library(xts)
Dataset.xts <- xts(Dataset$Volume, order.by=Dataset$Date)
当我尝试基于this Q分解它时:
attr(Dataset.xts, 'frequency')<- 48
decompose(ts(Dataset.xts, frequency = 48))
我得到:
Error in decompose(ts(Dataset.xts, frequency = 48)) :
time series has no or less than 2 periods
答案 0 :(得分:1)
正如我在评论中提到的那样,您需要as.ts
而不是ts
。另外,您指定的频率要高于您拥有的记录数。两者都会导致错误。
此代码有效:
library(xts)
df1 <- data.frame(date = as.POSIXct(c("2018-01-01 08:00:00", "2018-01-01 08:30:00",
"2018-01-01 08:59:59","2018-01-01 09:29:59")),
volume = c(195, 188, 345, 123))
df1_xts <- xts(df1$volume, order.by = df1$date)
attr(df1_xts, 'frequency') <- 2
decompose(as.ts(df1_xts))
这不是(频率高于记录数):
attr(df1_xts, 'frequency') <- 48
decompose(as.ts(df1_xts))
Error in decompose(as.ts(df1_xts)) :
time series has no or less than 2 periods
也不是({{1}而不是ts
):
as.ts