Nothing
"eda.uni" <-
function(x,title="")
{
par (mfrow = c(2,2))
hist(x,main=title, xlab=deparse(substitute(x)))
plot(density(x, na.rm=TRUE),main="Smoothed Histogram")
qqnorm(x); qqline(x)
boxplot(x,horizontal=TRUE,main="BoxPlot")
}
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.