summary.marssMLE {MARSS} | R Documentation |
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 class 'marssMLE'
summary(object, digits = max(3, getOption("digits") - 3), ...)
Arguments
object |
A |
digits |
Number of digits for printing. |
... |
Not used. |
Value
Returns 'object' invisibly.
Author(s)
Eli Holmes, NOAA, Seattle, USA.
See Also
Examples
dat <- t(harborSeal)
dat <- dat[c(2,11),]
fit <- MARSS(dat)
summary(fit)
glance(fit)
tidy(fit)
[Package MARSS version 3.11.9 Index]