Learn R Programming

MARSS (version 3.11.9)

summary.marssMLE: Summary methods for marssMLE objects

Description

A brief summary of the fit: number of state and observation time series and the estimates. See also glance() and tidy() for other summary like output.

Usage

# S3 method for marssMLE
summary(object, digits = max(3, getOption("digits") - 3), ...)

Value

Returns `object` invisibly.

Arguments

object

A marssMLE object.

digits

Number of digits for printing.

...

Not used.

Author

Eli Holmes, NOAA, Seattle, USA.

See Also

glance(), tidy()

Examples

Run this code
  dat <- t(harborSeal)
  dat <- dat[c(2,11),]
  fit <- MARSS(dat)
  
  summary(fit)
  glance(fit)
  tidy(fit)
  

Run the code above in your browser using DataLab