I have a seasonal (7 days interval) time series, daily data for 30 days. What is the best approach for a reasonable forecast? The time series contains orders made with a app, it shows a seasonality of 1 week (lower sales at the beginning of the week). I try the holt winters approach with this code:
(m <- HoltWinters(ts,seasonal = "mult"))
plot(m)
plot(fitted(m))
but it gives me an error like: Error in decompose(ts(x[1L:wind], start = start(x), frequency = f),seasonal) : time series has no or less than 2 periods
What do you suggest?
EDIT: data here