#' Define helper function "almostEqual"
#' @export
almostEqual <- function(d1, d2, epsilon = 0.00001) {
return(abs(d1 - d2) <= epsilon)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.