Nothing
weights.manyglm <- function (object, type = c("prior", "working"), ...)
{
type <- match.arg(type)
res <- if (type == "prior")
object$prior.weights
else object$sqrt.weights
res <- apply(res, 2, function(x) x^2)
if (is.null(object$na.action))
res
else naresid(object$na.action, res)
}
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.