##' @title invert the image
##'
##' @param x
##'
##' @export invert
##' @author Satoshi Kume
##'
invert <- function(x) {
if(mean(x) > .5)
x <- 1 - x
x
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.