Nothing
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)))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.