#' Internal function. Checks if a number is a whole number.
#' @noRd
is_integer <- function(x, tol = .Machine$double.eps ^ 0.5) {
abs(x - round(x)) < tol
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.