Nothing
`coef.radfit` <-
function (object, ...)
{
out <- sapply(object$models, function(x) if (length(coef(x)) <
3)
c(coef(x), rep(NA, 3 - length(coef(x))))
else coef(x))
out <- t(out)
colnames(out) <- paste("par", 1:3, sep = "")
out
}
`coef.radfit.frame` <-
function(object, ...)
{
lapply(object, coef, ...)
}
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.