Nothing
##
## e p s . R
##
eps <- function(x = 1.0) {
stopifnot(is.numeric(x))
x <- max(abs(x))
if (x < .Machine$double.xmin) {
e <- .Machine$double.xmin
} else {
e <- 2^floor(log2(x)) * .Machine$double.eps
}
e
}
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.