
Extract and Compute Several Metrics from Model Output
get_vars.Rd
This function processes the output of a certain model (possibly related to fisheries) to extract, compute, and format various metrics.
Arguments
- M
A list or data structure that holds the model output/results. Expected to have several named elements, including
fit
,R
,SSB
, etc.- proj_file
(Optional) A file path to a projection file for Tier 3 results. Default is NULL.
- ord
The order and extent of reporting for the decision table aspect Default is dec_tab_ord.
Examples
if (FALSE) { # \dontrun{
model_result <- list(...) # Example model result here
metrics <- get_vars(model_result)
} # }