Learn R Programming

SSN (version 1.1.4)

summary.glmssn: Summary - S3 Method for Class 'glmssn'

Description

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

Usage

## S3 method for class 'glmssn':
summary(object, ...)

Arguments

object
an object of class glmssn
...
other arguments passed to summary

Value

  • An object with a 3-item list:
  • fixed.effects.estimatesa data.frame with columns FactorLevel (effect & level) Estimate, std.err, t.value, and prob.t (p-value) for the fixed effects
  • covariance.parameter.estimatesa list of covariance parameter estimates for each covariance model
  • Warningsa list of warnings associated with the object

Details

The summary.glmssn function summarizes the fitted model with a table of estimates for the fixed effects and the covariance parameter estimates. It also provides a warning log.

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)

  summary(fitSp)

Run the code above in your browser using DataLab