Generate APA-style HTML tables for qbrms model outputs with customizable styling options.
tab_model(
...,
show.ci = TRUE,
ci.lvl = 0.95,
show.rope = FALSE,
rope = c(-0.1, 0.1),
show.p_sig = FALSE,
show.pd = FALSE,
show.bf = FALSE,
digits = 2,
title = "Model Results",
file = NULL,
CSS = NULL,
dv.labels = NULL,
pred.labels = NULL,
show.intercept = TRUE,
show.r2 = FALSE,
show.icc = FALSE,
show.nobs = TRUE,
bootstrap = TRUE,
table.style = "default",
font.family = "system-ui, -apple-system, sans-serif",
font.size = "14px",
header.bg = "#f8f9fa",
stripe.bg = "#f9f9f9",
verbose = FALSE
)An object of class "qbrms_html_table" containing the HTML code
One or more qbrms_fit objects to display in the table
Logical; show credible intervals (default TRUE)
Credible interval level (default 0.95)
Logical; show ROPE analysis (default FALSE)
Numeric vector c(lower, upper) for ROPE bounds
Logical; show probability of practical significance (default FALSE)
Logical; show probability of direction (default FALSE)
Logical; show Bayes factors (default FALSE)
Number of decimal places (default 2)
Character; table title
Character; file path to save HTML output (optional)
Character; custom CSS styling (optional)
Character vector of dependent variable labels
Named character vector for predictor labels
Logical; show intercept row (default TRUE)
Logical; show R-squared if available (default FALSE)
Logical; show ICC for mixed models (default FALSE)
Logical; show number of observations (default TRUE)
Logical; use Bootstrap CSS framework (default TRUE)
Character; table style theme. Options: "default", "minimal", "academic", "modern"
Character; CSS font family (default "system-ui")
Character; base font size (default "14px")
Character; header background colour (default "#f8f9fa")
Character; striped row background colour (default "#f9f9f9")
Logical; print progress (default FALSE)