R/print.summary.gekm.R

Defines functions print.summary.gekm

Documented in print.summary.gekm

###                                                             ###
###                 PRINT-METHOD FOR summary.gekm    	        ###
###                                                             ###

## print.summary.gekm - print method for summary.gekm
## 
## @param x: summary.gekm[1]
##		object of class summary.gekm
## @param digits: num[1]
##		number of digits to be printed
## @param ...:
##		further arguments passed to printCoefmat
##
## @output:
##		invisible(x)



print.summary.gekm <- function(x, digits = 4L, ...){

    cat("\nCall:\n", paste(deparse(x$call), sep = "\n", collapse = "\n"), 
        "\n\n", sep = "")
	cat("Coefficients:\n")
	printCoefmat(coef(x), digits = digits, ...)
	cat("\nStandard Deviation:", format(x$sigma, digits = digits))
	cat("\n\nCorrelation Stucture:", x$covtype)	
	cat("\nCorrelation Parameters:\n")
		print(format(x$theta, digits = digits), print.gap = 2L,
			quote = FALSE)
	cat("\n")
	
	invisible(x)

}

Try the gek package in your browser

Any scripts or data that you put into this service are public.

gek documentation built on Jan. 31, 2026, 1:07 a.m.