Hi I use the following R codes for ETS forecasting in my Rexcel, but whenever the frequency of the data is high there is an error and the code do not run.
Given below are my codes:
#!rput
library(forecast)
zz <- ts(zz,freq=365,start=c(2009,1))
etsz <- ets(zz,model="ZZZ")
etszP <-...