Nothing
### summary methods extracts dispweight attributes, and prints a table
### of dispersion statistics
`summary.dispweight` <-
function(object, ...)
{
x <- attributes(object)
class(x) <- "summary.dispweight"
x
}
`print.summary.dispweight` <-
function(x, ...)
{
tab <- with(x, cbind(D, weights, df, p))
colnames(tab) <- c("Dispersion", "Weight", "Df", "Pr(Disp.)")
printCoefmat(tab, cs.ind = NA, ...)
if (!is.na(x$nsimul))
cat(gettextf("Based on %d simulations on '%s' nullmodel\n",
x$nsimul, x$nullmodel))
invisible(x)
}
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.