Skip to contents

Requires either

Usage

table_parcounts(
  replist,
  inputs = NULL,
  dir = NULL,
  caption = "Estimated parameters in the model.",
  verbose = TRUE
)

Arguments

replist

A list object created by SS_output().

inputs

An options list of inputs from the SS3 model created by SS_read(). If NULL, then the function will run SS_read(replist[["inputs"]][["dir"]]) to get the inputs.

dir

Directory where the .rda files will be written. The default value is NULL where a table folder will be created where the Report.sso file is located associated with replist.

verbose

A logical value specifying if output should be printed to the screen.

See also

Author

Ian G. Taylor

Examples

if (FALSE) { # \dontrun{
# Load the model output
output <- r4ss::SS_output()
# Create the table
table_parcounts <- table_parcounts(output)
# filter for types with at least one estimated parameter
table_parcounts[["table"]] |> dplyr::filter(Count > 0)
} # }