R/zzz.R

Defines functions burn

# HELPER: burnin
burn <- function(input.matrix, burnin) {
  out <- tail(x = input.matrix, n = (nrow(input.matrix)-burnin))
  return(out)
}

Try the superdiag package in your browser

Any scripts or data that you put into this service are public.

superdiag documentation built on Dec. 5, 2020, 5:07 p.m.