Nothing
## =============================================================================
## Perturb : adds the numerical differencing value to a value
## =============================================================================
# internal function #
perturb <- function (value , pert=1e-8) {
# A small, positive value, not too small
pmax(abs(value) * pert,pert)
}
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.