R/method_misc.R

Defines functions names.mcmcOutput str.mcmcOutput tail.mcmcOutput head.mcmcOutput

# misc S3 methods for mcmcOutput objects

head.mcmcOutput <- function(x, n=6L, ...)  {
  head(unclass(x), n=n, ...)
}

tail.mcmcOutput <- function(x, n=6L, ...)  {
  tail(unclass(x), n=n, ...)
}

str.mcmcOutput <- function(object, ...)  {
  str(unclass(object), ...)
}
# .........................................................

names.mcmcOutput <- function(x, ...)  {
  colnames(unclass(x), ...)
}
# .........................................................

Try the mcmcOutput package in your browser

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

mcmcOutput documentation built on Nov. 18, 2022, 1:08 a.m.