wavShrink(x, wavelet="s8", n.level=ilogb(length(x), base=2), shrink.fun="hard", thresh.fun="universal", threshold=NULL, thresh.scale=1, xform="modwt", noise.variance=-1.0, reflect=TRUE)
floor(logb(length(x),2))
.
Default: floor(logb(length(x),2))
.TRUE
, the
last $Lj = (2^n.level - 1)(L - 1) + 1$
coefficients of the series are reflected (reversed and appended to the end
of the series) in order to attenuate the adverse effect of circular
filter operations on wavelet transform coefficients for
series whose endpoint levels are (highly) mismatched.
The variable $Lj$ represents the effective filter length at
decomposition level n.level
, where $L$
is the length of the wavelet (or scaling) filter.
After waveshrinking and reconstructing,
the first $N$ points of the result are returned, where $N$ is the length
of the original time series.
Default: TRUE
."hard"
, "soft"
, and "mid"
. Default: "hard"
."universal"
,
"minimax"
, and "adaptive"
.
n.levels
thresholds (one threshold per decomposition level).
Note: if xform == "modwt"
, then only the "universal"
threshold function is (currently) supported.
Default: "universal"
.
NULL
(thresholds are calculated based on the model defined by the thresh.fun
and thresh.scale
input arguments).wavDaubechies
for details. Default: "s8"
."dwt"
and "modwt"
for the discrete wavelet transform (DWT)
and maximal overlap DWT (MODWT), respectively. The DWT is a decimated transform
where (at each level) the number of transform coefficients is halved. Given
$N$ is the length of the original time series, the total
number of DWT transform coefficients is $N$.
The MODWT is a non-decimated transform where the number of
coefficients at each level is $N$ and the total number of
transform coefficients is $N$*n.level
. Unlike the DWT, the MODWT
is shift-invariant and is seen as a weighted average of all possible
non-redundant shifts of the DWT. See the references for details.
Default: "modwt"
.Assume that an appropriate model for our time series is $X=D + e$ where $D$ represents an unknown deterministic signal of interest and $e$ is some undesired stochastic noise that is independent and identically distributed and has a process mean of zero. Waveshrink seeks to eliminate the noise component $e$ of $X$ in hopes of obtaining (a close approximation to) $D$. The basic algorithm works as follows:
This function support different shrinkage methods and threshold estimation schemes. Let $W$ represent an arbitrary DWT coefficient and $W'$ the correpsonding thresholded coefficient using a threshold of $delta$. The supported shrinkage methods are
Hard thresholding reduces to zero all coefficients that do not exceed the threshold. Soft thresholding pushes toward zero any coefficient whose magnitude exceeds the threshold, and zeros the coefficient otherwise. Mid thresholding represents a compromise between hard and soft thresholding such that coefficients whose magnitude exceeds twice the threshold are not adjusted, those between the threshold and twice the trhreshold are shrunk, and those below the threshodl are zeroed.
The threshold is selected based on a model of the noise. The supported techniques for estimating the noise threshold are
Finally, the user has the choice of using either a decimated (standard) form of the discrete wavelet transform (DWT) or an undecimated version of the DWT (known as the Maximal Overlap DWT (MODWT)). Unlike the DWT, the MODWT is a (circular) shift-invariant transform so that a circular shift in the original time series produces an equivalent shift of the MODWT coefficients. In addition, the MODWT can be interpreted as a cycle-spun version of the DWT, which is achieved by averaging over all non-redundant DWTs of shifted versions of the original series. The z is a smoother version of the DWT at the cost of an increase in computational complexity (for an N-point series, the DWT requires $O(N)$ multiplications while the MODWT requires $O(N log2(N))$ multiplications.
Donoho, D. and Johnstone, I. Adapting to Unknown Smoothness via Wavelet Shrinkage. Technical report, Department of Statistics, Stanford University, 1992.
D. B. Percival and A. T. Walden, Wavelet Methods for Time Series Analysis, Cambridge University Press, 2000.
wavDaubechies
, wavDWT
, wavMODWT
.## MODWT waveshrinking using various thresh.scale
## values on sunspots series
x <- as.vector(sunspots)
tt <- as.numeric(time(sunspots))
thresh <- seq(0.5,2,length=4)
ws <- lapply(thresh, function(k,x)
wavShrink(x, wavelet="s8",
shrink.fun="hard", thresh.fun="universal",
thresh.scale=k, xform="modwt"), x=x)
ifultools::stackPlot(x=tt, y=data.frame(x, ws),
ylab=c("sunspots",thresh),
xlab="Time")
## DWT waveshrinking using various threshold
## functions
threshfuns <- c("universal", "minimax", "adaptive")
ws <- lapply(threshfuns, function(k,x)
wavShrink(x, wavelet="s8",
thresh.fun=k, xform="dwt"), x=x)
ifultools::stackPlot(x=tt, y=data.frame(x, ws),
ylab=c("original", threshfuns),
xlab="Normalized Time")
Run the code above in your browser using DataLab