linearBootstrapConfidenceInterval_stageTwo: Confidence interval based on bootstrapping a local linear...

Description Usage Arguments Value Author(s) References Examples

View source: R/linearBootstrapConfidenceInterval_stageTwo.R

Description

Implements the two stage local linear bootstrapping procedure in Tang et al. (2011)

Usage

1
2
linearBootstrapConfidenceInterval_stageTwo(explanatory, response,
    Y_0, level = NA)

Arguments

explanatory

Explanatory sample points

response

Observed responses at the explanatory sample points

Y_0

Threshold of interest

level

confidence level for the confidence interval (defaults to 0.95)

Value

Returns a list with

estimate

threshold estimate

lower

Lower bound of the confidence interval

upper

Upper bound of the confidence interval

sigmaSq

Estimate of the variance

deriv_d0

Value of NA since this is not estimated.

Author(s)

Shawn Mankad

References

Tang R, Banerjee M, Michailidis G (2011). 'A two-stage hybrid procedure for estimating an inverse regression function.' The Annals of Statistics, 39, 956-989.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
X=runif(25, 0,1)
Y=X^2+rnorm(n=length(X), sd=0.1)
oneStage_IR=stageOneAnalysis(X, Y, 0.25, type="IR-wald", 0.99)
X2 = c(rep(oneStage_IR$L1,37),rep(oneStage_IR$U1,38))
Y2=X2^2+rnorm(n=length(X2), sd=0.1)
twoStage_IR_locLinear=likelihoodConfidenceInterval(X, Y, 0.25, 0.95)

## The function is currently defined as
function (explanatory, response, Y_0, level = NA) 
{
    numBootstrap = 1000
    if (is.na(level)) {
        level = 0.95
    }
    alpha = 1 - level
    n = length(response)
    fit = threshold_estimate_locLinear(explanatory, response, 
        Y_0)
    Rn = rep(0, numBootstrap)
    for (i in 1:numBootstrap) {
        ind = sample(x = n, replace = TRUE)
        fit_bst = threshold_estimate_locLinear(explanatory[ind], 
            response[ind], Y_0)
        Rn[i] = sqrt(n) * (fit_bst$threshold_estimate_explanatory - 
            fit$threshold_estimate_explanatory)
    }
    qU = quantile(Rn, alpha/2)
    qL = quantile(Rn, level + alpha/2)
    uBand = fit$threshold_estimate_explanatory - n^(-1/2) * qU
    lBand = fit$threshold_estimate_explanatory - n^(-1/2) * qL
    return(list(estimate = fit$threshold_estimate_explanatory, 
        lower = max(lBand, min(explanatory)), upper = min(uBand, 
            max(explanatory)), sigmaSq = NA, deriv_d0 = NA))
  }

twostageTE documentation built on May 1, 2019, 9:18 p.m.