# Version number comparison utilities
is_leq <- function(x, y) {
z <- compareVersion(x, y)
z == 0 | z == -1
}
is_geq <- function(x, y) {
z <- compareVersion(x, y)
z == 0 | z == 1
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.