Skip to contents

Displays a concise summary of an fb4_result object. The output adapts to the fitting method used: traditional methods (binary search, optim, direct) show weight, growth, consumption, and convergence; "mle" shows parameter estimates with confidence intervals and AIC; "bootstrap" shows mean/SD estimates and CI; and "hierarchical" shows population-level parameters with model fit statistics.

Usage

# S3 method for class 'fb4_result'
print(x, ...)

Arguments

x

fb4_result object

...

Additional arguments (not used)

Value

Invisibly returns the input object

Examples

if (FALSE) { # \dontrun{
result <- run_fb4(bio, fit_to = "Weight", fit_value = 150)
print(result)
} # }