#' Test for equality within machine tolerance
#'
#' @param x,y Numeric values to compare
#' @return `TRUE` if equal, `FALSE` otherwise
#' @author Alexey Shiklomanov
eq <- function(x, y) {
isTRUE(all.equal(x, y))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.