TABLE OF CONTENTS
methodsBiv/summary.bivrec [ Functions ]
NAME
summary.bivrec --- S3 summary method
FUNCTION
Computes a summary for the bivrec class
SYNOPSIS
358 summary.bivrec <- function(object, digits = 4, ...)
INPUTS
object an object of class bivrec digits precision to print the output
OUTPUTS
an object of class summary.bivrec
SOURCE
361 { 362 x <- object 363 out <- NULL 364 dots <- as.list(substitute(list(...)))[ - 1] 365 # Extract the summaries 366 sreg <- format(x$summaries$regression, digits = digits, ...) 367 sdisp <- format(x$summaries$dispersion, digits = digits, ...) 368 out <- list(call = x$call, summary.reg = sreg, summary.disp = sdisp) 369 processnames <- attr(x, "processnames") 370 attr(out, "processnames") <- processnames 371 class(out) <- "summary.bivrec" 372 return(out) 373 }