inst/classic-bugs/R/check.R

library(coda, quietly=TRUE)
x <- read.openbugs(quiet=TRUE)
checkstats <- summary(x)$statistics
if (is.matrix(benchstats)) {
  rnb <- order(rownames(benchstats))
  rnc <- order(rownames(checkstats))
  z <- (benchstats[rnb,1] - checkstats[rnc,1])
  z <- ifelse(z==0, 0, z/benchstats[rnb,2])
} else {
  z <- (benchstats[1] - checkstats[1])
  z <- ifelse(z==0, 0, z/benchstats[2])
}
print(z)
q(status=(any(abs(z) > 0.15)))

Try the nimble package in your browser

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

nimble documentation built on July 9, 2023, 5:24 p.m.