tidy.lfq_fit: Tidy an lfq_fit object

View source: R/methods-tidy.R

tidy.lfq_fitR Documentation

Tidy an lfq_fit object

Description

Converts model results to a tidy tibble, compatible with the broom package ecosystem.

Usage

tidy.lfq_fit(x, conf.int = TRUE, conf.level = 0.95, ...)

Arguments

x

An lfq_fit object.

conf.int

Include confidence intervals? Default TRUE.

conf.level

Confidence level. Default 0.95.

...

Ignored.

Value

A tibble with columns: lineage, term, estimate, std.error, conf.low, conf.high.

Examples

sim <- simulate_dynamics(n_lineages = 3,
  advantages = c("A" = 1.2, "B" = 0.8), seed = 1)
fit <- fit_model(sim)
tidy.lfq_fit(fit)


lineagefreq documentation built on April 3, 2026, 9:09 a.m.