.refineParameters = function(para){
if(is.character(para)){
if(para=="" | tolower(para)=="null" | tolower(para) == "na" ){
para <- NULL
}else if(!is.na(as.numeric(para))){
para <- as.numeric(para)
}
}else{
if(is.na(para))
para <- NULL
}
return(para)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.