i appreciate this is not a reprex apologies, but i am struggling to work out why the data is not plotting for the correct time. it seems to default to plotting for the start of 2015 instead of in may. as a result the attempt to autolayer over the arima forecast is not working. any help appreciated thanks
df.train.ts <- msts(df.train[,-3], seasonal.periods = c(7,365.25), start=c(2013,01,01))
df.test.ts <- msts(df.validation[,-3], seasonal.periods = c(7,365.25), start = c(2015,5, 25) )
forecast3 <- forecast::forecast(fit3, h=218)
forecast3 %>%
autoplot() + autolayer(df.test.ts[,2])