Overlapping Batch Means
Variance of sample mean of time series calculated using overlapping batch means.
olbm(x, batch.length, demean = TRUE)
x |
a matrix or time series object. Each column of |
batch.length |
length of batches. |
demean |
when |
The estimated variance of the sample mean.
h <- function(x) if (all(x >= 0) && sum(x) <= 1) return(1) else return(-Inf) out <- metrop(h, rep(0, 5), 1000) out <- metrop(out, scale = 0.1) out <- metrop(out, nbatch = 1e4) foo <- olbm(out$batch, 150) # monte carlo estimates (true means are same by symmetry) apply(out$batch, 2, mean) # monte carlo standard errors (true s. d. are same by symmetry) sqrt(diag(foo)) # check that batch length is reasonable acf(out$batch, lag.max = 200)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.