Learn R Programming

Bolstad2 (version 1.0-29)

thin: Thin an MCMC sample

Description

Thins the output from an MCMC process

Usage

thin(x, k)

Arguments

x

A vector, matrix or data.frame containing output from an MCMC sampling scheme

k

An integer. This function takes every kth element from x

Value

A thinned vector, matrix or data frame containing every kth element of x.

Details

Note this function does not check to see if k is sensible.

Examples

Run this code
# NOT RUN {
## A blockwise Metropolis-Hastings chain of 1000 elements, thinned to
## 5th element
##

MCMCSampleBW = bivnormMH(0.9, type = 'block')
MCMCSampleBW = thin(MCMCSampleBW, 5)

# }

Run the code above in your browser using DataLab