Nothing
"lines.humpfit" <-
function(x, segments=101, ...)
{
mass <- x$x
if (!is.null(segments) && segments > 0) {
mass <- seq(min(mass), max(mass), length=segments)
fv <- predict(x, newdata = mass)
}
else {
i <- order(mass)
fv <- fitted(x)
mass <- mass[i]
fv <- fv[i]
}
lines(mass, fv, ...)
invisible()
}
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.