WiSEBoot-package: Wild Scale-Enhanced (WiSE) Bootstrap

Description Details Author(s) References See Also Examples

Description

The Wild Scale-Enhanced (WiSE) bootstrap method is implemented for models which include a wavelet signal component. Functions within this package allow the users to automatically select a wavelet smoothing level, test wavelet coefficient-specific hypotheses, and manipulate the data for usage within wavelet methodologies.

Details

Package: WiSEBoot
Type: Package
Version: 1.4.0
Date: 2016-03-31
License: GPL-2

Most users of this package will need to modify their data so that it is compatible with the discrete wavelet transform. That is, the input data series for the WiSE bootstrap must be of length T=2^J for some positive integer, J. The padVector and padMatrix functions are quick and easy tools which convert the data to appropriate length. A base knowledge of wavelets is recommended before attempting to utilize this package.

The bootstrap methodology is built to automatically estimate parameters within models of the form

Y = γ_0 1 + γ_1 t + W γ + e

where Y is the data is the vector, linear parameters in time (t) are γ_0 and γ_1, γ are the wavelet coefficients (scaling and filter), and W is the DWT for a fixed wavelet basis. Note, in many cases of the DWT, the scaling coefficient is equivalent to γ_0, and thus, estimated there.

The WiSEBoot function allows the user to automatically select a threshold level for γ. Our threshold is defined as the level above which all fine wavelet coefficients are set to 0. This function also provides the WiSE bootstrap samples of the wavelet coefficients (for the selected threshold) and bootstrap samples of the linear parameters.

The WiSEHypothesisTest and WiSEConfidenceRegion functions allow the user to test or examine a specific relationship between wavelet coefficients from two data series. Specifically, given 2 data series,

X = γ_{x0} 1 + γ_{x1} t + Wγ_x + e_x

Y = γ_{y0} 1 + γ_{y1} t + Wγ_y + e_y

these functions help the user examine the viability of the relationship γ_y = α + β γ_x. Note, γ_x and γ_y are defined as the non-thresholded wavelet coefficients of these series. We may obtain a p-value for the specific null hypothesis

H_0: α = m, β = n

(where m, n are real numbers), or visualize a confidence region in these parameters.

Author(s)

Megan Heyman, Snigdhansu Chatterjee

Maintainer: Megan Heyman <heyma029@umn.edu>

References

Errata and breaking news: http://users.stat.umn.edu/~heyma029/WiSEBoot_errata.html

Amy Braverman (NASA-JPL), Noel Cressie (Univ. of Wollongong), and Matthew Gunson (NASA-JPL) are other major contributors in projects related to developing methodology for this package.

The WiSE bootstrap methodology is defined in theoretical detail in Chatterjee, S. et al. "WiSE bootstrap for model selection" (in progress).

The WiSE bootstrap hypothesis test is implemented as an analysis tool in Braverman, A. et al. "Probabilistic Climate Model Evaluation" (in progress).

For an overview of wavelet methods using wavethresh in R, see "Wavelet Methods for Statistics in R," (Nason, 2008).

See Also

wavethresh-package

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##User should implement a high number of bootstrap samples (R).  
##  R=10 bootstrap samples is not recommended.  For demonstration only.

##Select a wavelet smooth level for signal
data("SimulatedSNR9Series")
bootObj <- WiSEBoot(SimulatedSNR9Series[,4], R=10)
bootObj$MSECriteria #check WiSEBoot selected threshold (minimum MSE) -- truth is J0=3

##Test whether \alpha=0 and \beta=1 for AIRS and IPSL Run 1 at 60E
data("CM20N20S60E")
padData <- padMatrix(CM20N20S60E)
hypTest <- WiSEHypothesisTest(padData$xPad[,1], padData$xPad[,2], J0=5, R=10, 
                              XParam=padData$linearParam[,1], YParam=padData$linearParam[,2], 
                              plot=TRUE)

WiSEBoot documentation built on May 2, 2019, 12:35 p.m.