Skip to contents

summary method for class "hamstr_fit"

Usage

# S3 method for hamstr_fit
summary(object, type = c("age_models", "acc_rates", "pars"), ...)

Arguments

object

hamstr_fit object

type

age models "age_models" or accumulation rates "acc_rates"

...

additional arguments to hamstr summary methods

Value

a tibble

Examples

if (FALSE) {
fit <- hamstr(
  depth = MSB2K$depth,
  obs_age = MSB2K$age,
  obs_err = MSB2K$error,
  K = c(10, 10))

summary(fit)
summary(fit, type = c("acc_rates"))
}