Nothing
weighted.residuals.manylm <- function(obj, drop0 = TRUE){
w <- weights(obj)
r <- as.matrix(residuals(obj, type = "deviance"))
if (drop0 && !is.null(w))
r[w != 0,,drop=FALSE]
else r
}
#setMethod("weighted.residuals", "manylm", weighted.residuals.manylm)
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.