Skip to contents

Returns the report from the fresh session objective associated with a portable fit. The objective is rebuilt once when needed and then reused from the session-only cache.

Usage

sbt_fit_report(x)

Arguments

x

An sbt_fit object.

Value

The named model report list evaluated at the accepted optimum. It contains fitted biological quantities and observation predictions, including natural mortality, selectivity, recruitment, numbers-at-age, total reproductive output, harvest rates, and likelihood-component output.

Examples

if (FALSE) { # \dontrun{
fit <- sbt_example_fit()
report <- sbt_fit_report(fit)
c(B0 = report$B0, terminal_TRO = tail(report$spawning_biomass_y, 1L))
} # }