# Check gender
check_gender <- function(x) {
  sex <- list(Boy =  c("male",   "boy"),
             Girl =  c("female", "girl"))
  match <- lapply(sex, grep, pattern = paste0("^", x), ignore.case = TRUE)
  hits  <- sapply(match, length)
  if (any(hits)) {
    return(names(match[which(hits > 0)]))
  } else {
    stop("Unrecognized gender.", call. = FALSE)
  }
}
# conversions
convert <- function(x, from, to) {
  units <- list(cm = c("cm" = 1,
                       "in" = 0.393701),
                kg = c("kg" = 1,
                       "lb" = 2.20462),
             month =  c("month" = 1))
  if (from == "month" & to != "month") {
    warning("Currently age can only be expressed in months.", call. = FALSE)
    to <- "month"
  }
  from <- match.arg(from, names(units))
  to   <- match.arg(to,   names(units[[from]]))
  x * units[[from]][to]
}
# symmetrical colors pased on specified brewer palette
sym_pal <- function(palette, levels) {
  brewer = c("BrBG", "PiYG", "PRGn", "PuOr", "RdBu", "RdGy", "RdYlBu",
             "RdYlGn", "Spectral",
             "Blues", "BuGn", "BuPu", "GnBu", "Greens", "Greys", "Oranges",
             "OrRd", "PuBu", "PuBuGn", "PuRd", "Purples", "RdPu", "Reds",
             "YlGn", "YlGnBu", "YlOrBr", "YlOrRd")
  palette <- match.arg(palette, brewer)
  # add extra color to avoid using the lightest color
  mid <- median(seq_along(levels))
  cols <- brewer_pal(palette = palette)(mid + 1)[-1]
  cols <- c(cols, rev(cols))
  if (length(levels) %% 2) cols <- cols[-mid]
  setNames(cols, levels)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.