se.Cenarma {cents}R Documentation

Bootstrap se for Cenarma object

Description

Bootstrap se for Cenarma object

Usage

se.Cenarma(obj, nBoot = 250)

Arguments

obj

obj is the output produced by cenarma()

nBoot

number of bootstrap iterations

Value

se

See Also

cenarma, boot.Cenarma

Examples

#Example takes about 30 seconds
## Not run: 
set.seed(43137)
n <- 200
z <- arima.sim(model=list(ar=0.8), n) 
i <- sample(1:n, size=floor(0.25*n))
z[i] <- NA
ANS <- cenarma(y=z, p=1)
startTime <- proc.time()[3]
se.Cenarma(ANS)
totalTime <- proc.time()[3]-startTime
totalTime

## End(Not run)

[Package cents version 0.1-41 Index]