Learn R Programming

MARSS (version 3.9)

print.marssMODEL: Printing marssMODEL Objects

Description

print(marssMODEL)., where marssMODEL is a marssMODEL object, will print out summary information on the model.

Usage

# S3 method for marssMODEL
print(x, ...)

Arguments

x

A marssMODEL object.

...

Other arguments for print.

Value

A print out of information and invisibly a list with the structure of each parameter matrix. If you assign the print call to a value, then you can reference the output.

Examples

Run this code
# NOT RUN {
  dat = t(harborSeal)
  dat = dat[c(2,11),]
  MLEobj = MARSS(dat)

  print(MLEobj$model)
  #this is identical to 
  print(MLEobj, what="model")
# }

Run the code above in your browser using DataLab