Nothing
"posterior.mode"<-function(x, adjust=0.1, ...){
if(is.mcmc(x)==FALSE){
warning("posterior.mode expecting mcmc object")
}
find.mode<-function(x,adjust,...){
dx<-density(x, adjust=adjust, ...)
dx$x[which.max(dx$y)]
}
apply(as.matrix(x), 2, find.mode, adjust=adjust, ...)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.