Nothing
`seasonal.ave` <-
function(x, ave.FUN = mean, ...)
{
result <- ts(start = c(0, 1), end = c(1, 0),
frequency = frequency(x))
result[cycle(x)] <- ave(x, cycle(x), FUN = ave.FUN, ...)
return(result)
}
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.