R/caterpoints.R

caterpoints <- function(x, parnames, horizontal=TRUE, ...){
    if (!missing(parnames))
        x <- x[parnames]
    if (horizontal)
        points(x, rev(seq(along=x)), ...)
    else
        points(seq(along=x), x, ...)
}

Try the mcmcplots package in your browser

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

mcmcplots documentation built on May 2, 2019, 1:29 p.m.