Nothing
dilog <-
function (x, ...)
{
if (!is.vector(x, mode = "numeric") || length(x) != 1 ||
!is.finite(x) || x <= 1)
stop("'x' must be a finite numeric scalar larger than 1")
integrate(function(y) log(y)/(y - 1), lower = 1, upper = x,
...)$value
}
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.