aze function

Compute the AZE component of the SAZED ensemble

Compute the AZE component of the SAZED ensemble

aze estimates the season length of its argument from the mean autocorrelation zero distance

aze(y, preprocess = T)

Arguments

  • y: The input time series.
  • preprocess: If true, y is detrended and z-normalized before computation.

Returns

The AZE season length estimate of y.

Examples

season_length <- 26 y <- sin(1:400*2*pi/season_length) aze(y) aze(y, preprocess = FALSE)