https://github.com/cran/R2WinBUGS
Raw File
Tip revision: 9ce89306a233e4698a00717e9e6a5dae81207f5a authored by Sibylle Sturtz on 05 August 2005, 00:00:00 UTC
version 1.0-0
Tip revision: 9ce8930
plot.bugs.R
plot.bugs <- function (x, display.parallel=FALSE, ...){
    mar.old <- par("mar")
    par (pty = "m")
    layout(matrix(c(1,2),1,2))
    bugs.plot.summary (x, ...)
    bugs.plot.inferences (x, display.parallel, ...)
    mtext (paste ("Bugs model at \"", x$model.file, "\", ", x$n.chains,
      " chains, each with ", x$n.iter, " iterations", sep=""),
           outer=TRUE, line=-1, cex=.7)
    par (mar = mar.old)
}
back to top