#' @noRd
#'
is.wholenumber <- function(x, tol = .Machine$double.eps^0.5) {
abs(x - round(x)) < tol
}
#' @noRd
#'
load_into <- function(path) {
load(path)
get(ls()[ls() != "path"])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.