window function

Subsetting of MCMC Sampler Results

Subsetting of MCMC Sampler Results

Post-processing function to subset the MCMC iterations in georamps or predict.ramps results.

## S3 method for class 'ramps' window(x, iter, ...) ## S3 method for class 'predict.ramps' window(x, iter, ...)

Arguments

  • x: object returned by georamps or predict.ramps.
  • iter: numerical vector specifying the MCMC iterations to subset.
  • ...: some methods for this generic require additional arguments. None are used in this method.

Returns

Subsetted object of the same class as the one supplied.

Author(s)

Brian Smith brian-j-smith@uiowa.edu

See Also

georamps

predict.ramps

Examples

## Exclude first five iterations of the georamps example results ## Not run: fit <- window(NURE.fit, iter = 6:25) print(fit) summary(fit) ## End(Not run)