Nothing
"hplot" <-
function(x, breaks="Sturges", freq=FALSE, nclass=NULL, col=8, ...)
{
if ( is.null(nclass) )
hist(x, breaks=breaks, freq, col=col, ...)
else
hist(x, breaks=seq(min(x),max(x),length=nclass+1), freq, col=col, ...)
}
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.