Nothing
fp.forecast <-
function (x, h=1, conf.level=95)
{
#conf.level <- conf.level*100
aax <- forecast::auto.arima(x)
ans <- forecast::forecast(aax, h=h, level=conf.level)
return(cbind(ans$mean, ans$lower, ans$upper))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.