File: tsboot.Rd

package info (click to toggle)
boot 1.3-5-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,140 kB
  • sloc: makefile: 2
file content (256 lines) | stat: -rw-r--r-- 10,745 bytes parent folder | download | duplicates (8)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
\name{tsboot}
\alias{tsboot}
\alias{ts.return}
\title{
Bootstrapping of Time Series
}
\description{
  Generate \code{R} bootstrap replicates of a statistic applied to a
  time series.  The replicate time series can be generated using fixed
  or random block lengths or can be model based replicates.
}
\usage{
tsboot(tseries, statistic, R, l = NULL, sim = "model",
       endcorr = TRUE, n.sim = NROW(tseries), orig.t = TRUE,
       ran.gen, ran.args = NULL, norm = TRUE, \dots,
       parallel = c("no", "multicore", "snow"),
       ncpus = getOption("boot.ncpus", 1L), cl = NULL)
}
\arguments{
  \item{tseries}{
    A univariate or multivariate time series.
  }
  \item{statistic}{
    A function which when applied to \code{tseries} returns a vector
    containing the statistic(s) of interest.  Each time \code{statistic} is
    called it is passed a time series of length \code{n.sim} which is of the
    same class as the original \code{tseries}.  Any other arguments which
    \code{statistic} takes must remain constant for each bootstrap replicate
    and should be supplied through the \dots{} argument to \code{tsboot}.
  }
  \item{R}{
    A positive integer giving the number of bootstrap replicates required.  
  }
  \item{sim}{
    The type of simulation required to generate the replicate time series.  The
    possible input values are \code{"model"} (model based resampling),
    \code{"fixed"} (block resampling with fixed block lengths of
    \code{l}), \code{"geom"} (block resampling with block lengths
    having a geometric distribution with mean \code{l}) or
    \code{"scramble"} (phase scrambling).
  }
  \item{l}{
    If \code{sim} is \code{"fixed"} then \code{l} is the fixed block
    length used in generating the replicate time series.  If \code{sim} is
    \code{"geom"} then \code{l} is the mean of the geometric distribution
    used to generate the block lengths. \code{l} should be a positive
    integer less than the length of \code{tseries}.  This argument is not
    required when \code{sim} is \code{"model"} but it is required for all
    other simulation types.
  }
  \item{endcorr}{
    A logical variable indicating whether end corrections are to be
    applied when \code{sim} is \code{"fixed"}.  When \code{sim} is
    \code{"geom"}, \code{endcorr} is automatically set to \code{TRUE};
    \code{endcorr} is not used when \code{sim} is \code{"model"} or
    \code{"scramble"}.
  }
  \item{n.sim}{
    The length of the simulated time series.  Typically this will be equal
    to the length of the original time series but there are situations when
    it will be larger.  One obvious situation is if prediction is required.
    Another situation in which \code{n.sim} is larger than the original
    length is if \code{tseries} is a residual time series from fitting some
    model to the original time series. In this case, \code{n.sim} would
    usually be the length of the original time series.
  }
  \item{orig.t}{
    A logical variable which indicates whether \code{statistic} should be
    applied to \code{tseries} itself as well as the bootstrap replicate
    series.  If \code{statistic} is expecting a longer time series than
    \code{tseries} or if applying \code{statistic} to \code{tseries} will
    not yield any useful information then \code{orig.t} should be set to
    \code{FALSE}.
  }
  \item{ran.gen}{
    This is a function of three arguments.  The first argument is a time
    series.  If \code{sim} is \code{"model"} then it will always be
    \code{tseries} that is passed.  For other simulation types it is the
    result of selecting \code{n.sim} observations from \code{tseries} by
    some scheme and converting the result back into a time series of the
    same form as \code{tseries} (although of length \code{n.sim}).  The
    second argument to \code{ran.gen} is always the value \code{n.sim}, and
    the third argument is \code{ran.args}, which is used to supply any other
    objects needed by \code{ran.gen}.  If \code{sim} is \code{"model"} then
    the generation of the replicate time series will be done in
    \code{ran.gen} (for example through use of \code{\link{arima.sim}}).
    For the other simulation types \code{ran.gen} is used for
    \sQuote{post-blackening}.  The default is that the function simply returns
    the time series passed to it.
  }
  \item{ran.args}{
    This will be supplied to \code{ran.gen} each time it is called.  If
    \code{ran.gen} needs any extra arguments then they should be
    supplied as components of \code{ran.args}. Multiple arguments may be
    passed by making \code{ran.args} a list.  If \code{ran.args} is
    \code{NULL} then it should not be used within \code{ran.gen} but
    note that \code{ran.gen} must still have its third argument.
  }
  \item{norm}{
    A logical argument indicating whether normal margins should be used
    for phase scrambling.  If \code{norm} is \code{FALSE} then margins
    corresponding to the exact empirical margins are used.
  }
  \item{...}{
    Extra named arguments to \code{statistic} may be supplied here.
    Beware of partial matching to the arguments of \code{tsboot} listed above.
  }
  \item{parallel, ncpus, cl}{
    See the help for \code{\link{boot}}.
  }
}
\value{
  An object of class \code{"boot"} with the following components.

  \item{t0}{
    If \code{orig.t} is \code{TRUE} then \code{t0} is the result of
    \code{statistic(tseries,\dots{})} otherwise it is \code{NULL}.
  }
  \item{t}{
    The results of applying \code{statistic} to the replicate time series. 
  }
  \item{R}{
    The value of \code{R} as supplied to \code{tsboot}.
  }
  \item{tseries}{
    The original time series.
  }
  \item{statistic}{
    The function \code{statistic} as supplied.
  }
  \item{sim}{
    The simulation type used in generating the replicates.
  }
  \item{endcorr}{
    The value of \code{endcorr} used.  The value is meaningful only when
    \code{sim} is \code{"fixed"}; it is ignored for model based simulation
    or phase scrambling and is always set to \code{TRUE} if \code{sim} is
    \code{"geom"}.
  }
  \item{n.sim}{
    The value of \code{n.sim} used.
  }
  \item{l}{
    The value of \code{l} used for block based resampling.  This will be
    \code{NULL} if block based resampling was not used.
  }
  \item{ran.gen}{
    The \code{ran.gen} function used for generating the series or for
    \sQuote{post-blackening}.
  }
  \item{ran.args}{
    The extra arguments passed to \code{ran.gen}.
  }
  \item{call}{
    The original call to \code{tsboot}.
  }
}
\details{
  If \code{sim} is \code{"fixed"} then each replicate time series is
  found by taking blocks of length \code{l}, from the original time
  series and putting them end-to-end until a new series of length
  \code{n.sim} is created.  When \code{sim} is \code{"geom"} a similar
  approach is taken except that now the block lengths are generated from
  a geometric distribution with mean \code{l}.  Post-blackening can be
  carried out on these replicate time series by including the function
  \code{ran.gen} in the call to \code{tsboot} and having \code{tseries}
  as a time series of residuals.

  Model based resampling is very similar to the parametric bootstrap and
  all simulation must be in one of the user specified functions.  This
  avoids the complicated problem of choosing the block length but relies
  on an accurate model choice being made.

  Phase scrambling is described in Section 8.2.4 of Davison and Hinkley
  (1997).  The types of statistic for which this method produces
  reasonable results is very limited and the other methods seem to do
  better in most situations.  Other types of resampling in the frequency
  domain can be accomplished using the function \code{boot} with the
  argument \code{sim = "parametric"}.
}
\references{
Davison, A.C. and Hinkley, D.V. (1997) 
\emph{Bootstrap Methods and Their Application}. Cambridge University Press.

Kunsch, H.R. (1989) The jackknife and the bootstrap for general stationary
observations. \emph{Annals of Statistics}, \bold{17}, 1217--1241.

Politis, D.N. and Romano, J.P. (1994) The stationary bootstrap. 
\emph{Journal of the American Statistical Association}, \bold{89}, 1303--1313.
}
\seealso{
  \code{\link{boot}}, \code{\link{arima.sim}}
}
\examples{
lynx.fun <- function(tsb) {
     ar.fit <- ar(tsb, order.max = 25)
     c(ar.fit$order, mean(tsb), tsb)
}

# the stationary bootstrap with mean block length 20
lynx.1 <- tsboot(log(lynx), lynx.fun, R = 99, l = 20, sim = "geom")

# the fixed block bootstrap with length 20
lynx.2 <- tsboot(log(lynx), lynx.fun, R = 99, l = 20, sim = "fixed")

# Now for model based resampling we need the original model
# Note that for all of the bootstraps which use the residuals as their
# data, we set orig.t to FALSE since the function applied to the residual
# time series will be meaningless.
lynx.ar <- ar(log(lynx))
lynx.model <- list(order = c(lynx.ar$order, 0, 0), ar = lynx.ar$ar)
lynx.res <- lynx.ar$resid[!is.na(lynx.ar$resid)]
lynx.res <- lynx.res - mean(lynx.res)

lynx.sim <- function(res,n.sim, ran.args) {
     # random generation of replicate series using arima.sim 
     rg1 <- function(n, res) sample(res, n, replace = TRUE)
     ts.orig <- ran.args$ts
     ts.mod <- ran.args$model
     mean(ts.orig)+ts(arima.sim(model = ts.mod, n = n.sim,
                      rand.gen = rg1, res = as.vector(res)))
}

lynx.3 <- tsboot(lynx.res, lynx.fun, R = 99, sim = "model", n.sim = 114,
                 orig.t = FALSE, ran.gen = lynx.sim, 
                 ran.args = list(ts = log(lynx), model = lynx.model))

#  For "post-blackening" we need to define another function
lynx.black <- function(res, n.sim, ran.args) {
     ts.orig <- ran.args$ts
     ts.mod <- ran.args$model
     mean(ts.orig) + ts(arima.sim(model = ts.mod,n = n.sim,innov = res))
}

# Now we can run apply the two types of block resampling again but this
# time applying post-blackening.
lynx.1b <- tsboot(lynx.res, lynx.fun, R = 99, l = 20, sim = "fixed",
                  n.sim = 114, orig.t = FALSE, ran.gen = lynx.black, 
                  ran.args = list(ts = log(lynx), model = lynx.model))

lynx.2b <- tsboot(lynx.res, lynx.fun, R = 99, l = 20, sim = "geom",
                  n.sim = 114, orig.t = FALSE, ran.gen = lynx.black, 
                  ran.args = list(ts = log(lynx), model = lynx.model))

# To compare the observed order of the bootstrap replicates we
# proceed as follows.
table(lynx.1$t[, 1])
table(lynx.1b$t[, 1])
table(lynx.2$t[, 1])
table(lynx.2b$t[, 1])
table(lynx.3$t[, 1])
# Notice that the post-blackened and model-based bootstraps preserve
# the true order of the model (11) in many more cases than the others.
}
\keyword{nonparametric}
\keyword{ts}