besthr_table: Generate a summary table from besthr results

View source: R/table.R

besthr_tableR Documentation

Generate a summary table from besthr results

Description

Creates a publication-ready summary table containing group statistics, confidence intervals, and optionally effect sizes and significance.

Usage

besthr_table(
  hrest,
  format = "tibble",
  digits = 2,
  include_significance = FALSE
)

Arguments

hrest

An hrest object from estimate

format

Output format: "tibble" (default), "markdown", "html", or "latex"

digits

Number of decimal places for rounding (default 2)

include_significance

Logical, whether to include significance stars (default FALSE)

Value

A tibble (if format = "tibble") or character string (other formats)

Examples

d <- make_data()
hr <- estimate(d, score, group)
besthr_table(hr)
besthr_table(hr, format = "markdown")


besthr documentation built on March 18, 2026, 5:08 p.m.