Nothing
"predict.humpfit" <-
function(object, newdata = NULL, ...)
{
if (is.null(newdata))
return(fitted(object))
else {
p <- coef(object)
x <- unlist(newdata)
x <- ifelse(x < p[1], x/p[1], p[1]*p[1]/x/x)
fv <- p[3]*log(1 + p[2]*x/p[3])
}
fv
}
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.