Nothing
ghuber_sf <- function(x, y, p, a, b)
{
f <- function(t, a, b)
{
capping_function(t, a, b) * (2 * t - capping_function(t, a, b))
}
err <- x - y
p * f(pmin(err, 0), a, b) + (1 - p) * f(pmax(err, 0), a, b)
}
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.