Nothing
`boxplot.specaccum` <-
function(x, add=FALSE, ...)
{
if (x$method != "random")
stop("boxplot available only for method=\"random\"")
if (!add) {
plot(x$sites, x$richness, type="n", xlab="Sites", ylab="Species",
ylim=c(1, max(x$richness, na.rm = TRUE)), ...)
}
tmp <- boxplot(data.frame(t(x$perm)), add=TRUE, at=x$sites, axes=FALSE, ...)
invisible(tmp)
}
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.