bwadap.ts {iosmooth} | R Documentation |
Adaptive bandwidth choice for infinite order spectral density estimates
Description
Adaptive bandwidth choice for spectral density estimation with infinite order flat-top kernels.
Usage
## S3 method for class 'ts'
bwadap(x, Kn = 5, c.thresh = 2, ...)
Arguments
x |
A univariate time-series. |
Kn |
Tuning parameter Kn discussed in Politis (2003). Roughly, the number of lags the autocorrelation function must stay below the threshold determined by |
c.thresh |
The bandwidth is chosen by looking for the first time the autocorrelation function drops below |
... |
Currently unimplemented. |
Details
Returns a smoothing parameter l
; all lags after lag l
will be down-weighted by the kernel's taper. All kernels in this package are scaled to use roughly the same smoothing parameter.
Value
Smoothing parameter l
.
Author(s)
Timothy L. McMurry
References
Politis, D. N. (2003). Adaptive bandwidth choice. Journal of Nonparametric Statistics, 15(4-5), 517-533.
See Also
bwadap
, bwadap
, bwplot
, bwplot.ts
Examples
x <- arima.sim(list(ar=.7, ma=-.3), 100)
bwplot(x)
l <- bwadap(x)
plot(iospecden(x, l), type="l")