Learn R Programming

SSN (version 1.1.8)

print.summary.glmssn: Print summary - S3 Method for Class 'glmssn'

Description

print is a generic function that prints output summaries of fitted models in the SSN package. In particular, the function invokes methods for objects of class summary.glmssn.

Usage

"print"(x, digits = max(3L, getOption("digits") - 3L), signif.stars = getOption("show.signif.stars"), ...)

Arguments

x
an object of class summary.glmssn
digits
the number of significant digits to use when printing.
signif.stars
logical. If 'TRUE', 'significance stars' are printed for each coefficient.
...
other arguments passed to print

Value

Prints the summary beginning with call and arguments used, plus:

Details

The print.summary.glmssn function summarizes and prints the fitted model with a table of estimates for the fixed effects and the covariance parameter estimates.

See Also

glmssn,link{covparms}

Examples

Run this code

	library(SSN)
	data(modelFits)
	#make sure fitSp has the correct path, will vary for each users installation
	fitSp$ssn.object@path <- system.file("lsndata/MiddleFork04.ssn", package = "SSN")
	names(fitSp)
	names(fitSp$ssn.object)

  print(summary(fitSp))
  #the same effect is achieved with this
  summary(fitSp)
  #or this
  fitSp

Run the code above in your browser using DataLab