mm <- function(ob, min.pr, max.pr){
res <- ifelse(ob > max.pr, max.pr, ob)
res <- ifelse(res < min.pr, min.pr, res)
res
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.