Nothing
Estimate_Acps <-
function(ts, method = "periodogram") {
# Calculating autocorrelation
acf_values <- acf(ts, plot = FALSE)$acf
# Estimation of power spectrum based on periodogram method
spectrum <- spectrum(acf_values, plot = FALSE)
return(spectrum$spec)
}
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.