Nothing
# Contributed by Randall Pruim (rpruim@calvin.edu)
interval <- function(x, ...){UseMethod("interval", x)}
interval.htest <- function (x, ...){
int <- x$conf.int
lev <- attr(int, "conf.level")
cat( "\n" )
cat('Method: ')
cat(x$method)
cat( "\n" )
cat( "\n" )
print(x$estimate)
cat( "\n" )
cat( paste(lev * 100, "% confidence interval: \n", sep = "") )
cat( as.vector(int) )
cat( "\n" )
cat( "\n" )
invisible(int)
}
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.