#' @include mcmcstats-package.R
NULL
between <- function(x, x.min=-Inf, x.max=Inf,
include.left = TRUE, include.right = TRUE) {
if (include.left) {
left_fun = `>=`
} else {
left_fun = `>`
}
if (include.right) {
right_fun = `<=`
} else {
right_fn = `<`
}
left_fun(x, x.min) & right_fun(x, x.max)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.