my.max <- function(x) ifelse(!all(is.na(x)), max(x, na.rm = TRUE), NA)
my.min <- function(x) ifelse(!all(is.na(x)), min(x, na.rm = TRUE), NA)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.