每日时间序列的频率

时间:2018-09-16 08:35:45

标签: time-series arima

我有从2017年1月28日至2018年8月1日不到两年的每日通话量数据(共560个观察结果)。数据显示,与任何其他工作日相比,每个星期日的呼叫量均较低。我不确定要在ts函数中输入频率参数,但我要先输入365。

我做对了还是有更好的方法来应对,因为所有星期天都显示交易量很少。

data_ts <- ts(data$Calls,start = decimal_date(as.Date("2017-01-28")),frequency = c(365))
autoplot(data_ts)

enter image description here

数据如下

enter image description here

0 个答案:

没有答案