Skip to contents

spicy’s four reporting helpers cover the full APA Manual 7 table sequence used in empirical articles:

The four functions share the same output grammar — the same output formats (default console ASCII, gt, tinytable, flextable, word, excel, clipboard), the same decimal_mark, p_digits, labels, and align arguments, and the same digits control for numeric cells (the categorical table’s cells are percentages, so it spells the argument percent_digits) — so a single reporting workflow can move smoothly from descriptive to inferential without juggling different APIs. This vignette focuses on that shared logic; the function-specific articles cover the methodological options in depth.

Choose the right function

Use the function that matches the unit you want to report:

Function Reports Selection grammar Typical additions
table_categorical() Categorical variables (factors, labelled) select, by Chi-squared test, association measure (phi, cramer_v, tau_b, …), confidence interval
table_continuous() Numeric / continuous variables select, by Group-comparison test (Student / Welch t, Wilcoxon, ANOVA, Kruskal–Wallis), effect size (Hedges’ g, η², rank-biserial r, ε²)
table_continuous_lm() Numeric outcomes through one linear model per outcome select, by (single predictor) Robust / cluster-robust / bootstrap / jackknife SE, case weights, additive covariate adjustment, four effect-size measures with noncentral CIs
table_regression() One or several fitted models — 36 classes, from lm() / glm() to mixed, ordinal, survival and Bayesian engines (see vignette("table-regression-supported-models")) Fit-first: pass the model object(s) directly, no select / by APA-aligned coefficient table with B, β, 95% CI, p, AME, robust variance, side-by-side and hierarchical layouts

In practice, follow the APA sequence:

  • start with table_categorical() for smoking, education, or activity — APA Table 1 categorical descriptors;
  • use table_continuous() for BMI, well-being, or income — Table 1 continuous descriptors and Table 2 unadjusted group comparisons;
  • switch to table_continuous_lm() when the same comparison must account for case weights, robust SE, or covariate adjustment;
  • finish with table_regression() once the substantive model is fitted — APA Table 3 with all predictors, factor groupings, reference rows, and (optionally) standardised coefficients, marginal effects, or nested model comparisons.

The first three functions live inside a select / by data-frame grammar; table_regression() is fit-first — you build the model the usual R way (lm(), glm(), or any other supported engine) and hand the object in. All four share the post-construction grammar (output, labels, decimal_mark, align, and the digits controls), so swapping functions never breaks your rendering pipeline.

A shared interface

The examples below use sochealth, the dataset bundled with spicy: a simulated social-health survey of 1200 respondents and 24 variables, every one of them carrying a variable label (see ?sochealth).

The three descriptive functions share the same core arguments:

table_categorical(
  sochealth,
  select = c(smoking, physical_activity),
  by = education,
  labels = c(
    smoking           = "Smoking status",
    physical_activity = "Regular physical activity"
  )
)
#> Categorical table by education
#> 
#>  Variable                   Lower secondary n  Lower secondary % 
#> ───────────────────────────┼──────────────────────────────────────
#>  Smoking status                                                  
#>    No                              179               68.6        
#>    Yes                              78               29.9        
#>    (Missing)                         4                1.5        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                       
#>    No                              177               67.8        
#>    Yes                              84               32.2        
#> 
#>  Variable                   Upper secondary n  Upper secondary %  Tertiary n 
#> ───────────────────────────┼──────────────────────────────────────────────────
#>  Smoking status                                                              
#>    No                              415               77.0            332     
#>    Yes                             112               20.8             59     
#>    (Missing)                        12                2.2              9     
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                                   
#>    No                              310               57.5            163     
#>    Yes                             229               42.5            237     
#> 
#>  Variable                   Tertiary %  Total n  Total %    p    Cramer's V 
#> ───────────────────────────┼─────────────────────────────────────────────────
#>  Smoking status                                           <.001     .14     
#>    No                          83.0       926     77.2                      
#>    Yes                         14.8       249     20.8                      
#>    (Missing)                    2.2        25      2.1                      
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                <.001     .21     
#>    No                          40.8       650     54.2                      
#>    Yes                         59.2       550     45.8
table_continuous(
  sochealth,
  select = c(bmi, wellbeing_score, life_sat_health),
  by = education,
  labels = c(
    bmi = "Body mass index",
    wellbeing_score = "Well-being score",
    life_sat_health = "Satisfaction with health"
  )
)
#> Descriptive statistics
#> 
#>  Variable                  Group              M     SD     Min    Max   
#> ──────────────────────────┼──────────────────────────────────────────────
#>  Body mass index           Lower secondary  28.09   3.47  18.20   38.90 
#>                            Upper secondary  26.02   3.43  16.00   37.10 
#>                            Tertiary         24.39   3.52  16.00   33.00 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Well-being score          Lower secondary  57.22  15.44  18.70   97.90 
#>                            Upper secondary  68.97  13.62  26.70  100.00 
#>                            Tertiary         76.85  13.23  40.40  100.00 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Satisfaction with health  Lower secondary   2.71   1.20   1.00    5.00 
#>                            Upper secondary   3.53   1.19   1.00    5.00 
#>                            Tertiary          4.11   1.04   1.00    5.00 
#> 
#>  Variable                  Group            95% CI LL  95% CI UL   n     p   
#> ──────────────────────────┼───────────────────────────────────────────────────
#>  Body mass index           Lower secondary    27.66      28.51    260  <.001 
#>                            Upper secondary    25.73      26.31    534        
#>                            Tertiary           24.04      24.74    394        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Well-being score          Lower secondary    55.33      59.10    261  <.001 
#>                            Upper secondary    67.82      70.12    539        
#>                            Tertiary           75.55      78.15    400        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Satisfaction with health  Lower secondary     2.57       2.86    259  <.001 
#>                            Upper secondary     3.43       3.63    534        
#>                            Tertiary            4.01       4.21    399        
#> 
#> Missing values removed: bmi (12), life_sat_health (8).
table_continuous_lm(
  sochealth,
  select = c(bmi, wellbeing_score, life_sat_health),
  by = education,
  weights = weight,
  vcov = "HC3"
)
#> Continuous outcomes by Highest education level
#> 
#>  Variable                        M (Lower secondary)  M (Upper secondary) 
#> ────────────────────────────────┼──────────────────────────────────────────
#>  Body mass index                        27.85                25.79        
#>  WHO-5 wellbeing index (0-100)          57.71                68.39        
#>  Satisfaction with health (1-5)          2.75                 3.50        
#> 
#>  Variable                        M (Tertiary)    p     R²    n   
#> ────────────────────────────────┼─────────────────────────────────
#>  Body mass index                    24.23      <.001  0.13  1188 
#>  WHO-5 wellbeing index (0-100)      76.55      <.001  0.19  1200 
#>  Satisfaction with health (1-5)      4.09      <.001  0.15  1192 
#> 
#> Note. Std. errors: heteroskedasticity-robust (HC3).

Two words on the weighted example. weights supplies case weights, passed to lm(weights = ) — appropriate for weighted article tables, but not a substitute for a full complex-survey design (strata, clusters, calibration), which is the survey package’s domain. And because sochealth$weight holds calibrated sampling weights, the example pairs them with a heteroskedasticity-robust variance (vcov = "HC3"): the default "classical" WLS variance would treat the weights as precision weights, which sampling weights are not.

The same argument pattern is used in all three cases:

  • select chooses the reported variables;
  • by defines the grouping structure;
  • labels cleans up the row labels;
  • output decides how the result is rendered or exported.

For model-based continuous tables, the same pattern applies, but by must be a single predictor because one linear model is fit per outcome.

table_regression() joins the same labels / output / decimal_mark / digits grammar but is fit-first: rather than expressing model structure inline through select and by, you pass one or several already-fitted lm() or glm() objects:

fit <- lm(
  wellbeing_score ~ age + sex + smoking + physical_activity,
  data = sochealth
)
table_regression(
  fit,
  labels = c(
    age               = "Age (years)",
    sex               = "Sex",
    smoking           = "Smoking status",
    physical_activity = "Regular physical activity"
  )
)
#> Linear regression: wellbeing_score
#> 
#>  Variable                       B      SE       95% CI        p   
#> ────────────────────────────┼──────────────────────────────────────
#>  (Intercept)                   64.18  1.69  [60.87, 67.49]  <.001 
#>  Age (years)                    0.04  0.03  [-0.02,  0.10]   .171 
#>  Sex:                                                             
#>    Female (ref.)                 –     –          –          –    
#>    Male                         3.88  0.90  [ 2.11,  5.65]  <.001 
#>  Smoking status:                                                  
#>    No (ref.)                     –     –          –          –    
#>    Yes                         -1.73  1.10  [-3.90,  0.43]   .117 
#>  Regular physical activity:                                       
#>    No (ref.)                     –     –          –          –    
#>    Yes                          2.70  0.91  [ 0.93,  4.48]   .003 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  n                           1175                                 
#>  R²                             0.03                              
#>  Adj.R²                         0.02                              
#> 
#> Note. Linear regression.
#> Std. errors: classical (OLS).

This split is intentional. The descriptive trio (categorical, continuous, continuous_lm) reports the dataselect and by describe what you want to see. table_regression() reports the model — the model formula has already declared which predictors, interactions, polynomials, transformations, splines, and contrasts to report, so passing those again through select / by would duplicate the model object’s information and risk diverging from it.

A practical reporting sequence

A common report contains both table types, often with the same grouping variable. For example, you might first summarize categorical health behaviors, then summarize continuous well-being indicators.

Categorical variables

table_categorical(
  sochealth,
  select = c(smoking, physical_activity, dentist_12m),
  by = education,
  labels = c(
    smoking           = "Smoking status",
    physical_activity = "Regular physical activity",
    dentist_12m       = "Visited a dentist in the last 12 months"
  )
)
#> Categorical table by education
#> 
#>  Variable                                 Lower secondary n  Lower secondary % 
#> ─────────────────────────────────────────┼──────────────────────────────────────
#>  Smoking status                                                                
#>    No                                            179               68.6        
#>    Yes                                            78               29.9        
#>    (Missing)                                       4                1.5        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                                     
#>    No                                            177               67.8        
#>    Yes                                            84               32.2        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Visited a dentist in the last 12 months                                       
#>    No                                            113               43.3        
#>    Yes                                           148               56.7        
#> 
#>  Variable                                 Upper secondary n  Upper secondary % 
#> ─────────────────────────────────────────┼──────────────────────────────────────
#>  Smoking status                                                                
#>    No                                            415               77.0        
#>    Yes                                           112               20.8        
#>    (Missing)                                      12                2.2        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                                     
#>    No                                            310               57.5        
#>    Yes                                           229               42.5        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Visited a dentist in the last 12 months                                       
#>    No                                            174               32.3        
#>    Yes                                           365               67.7        
#> 
#>  Variable                                 Tertiary n  Tertiary %  Total n 
#> ─────────────────────────────────────────┼─────────────────────────────────
#>  Smoking status                                                           
#>    No                                        332         83.0       926   
#>    Yes                                        59         14.8       249   
#>    (Missing)                                   9          2.2        25   
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                                                
#>    No                                        163         40.8       650   
#>    Yes                                       237         59.2       550   
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Visited a dentist in the last 12 months                                  
#>    No                                         67         16.8       354   
#>    Yes                                       333         83.2       846   
#> 
#>  Variable                                 Total %    p    Cramer's V 
#> ─────────────────────────────────────────┼────────────────────────────
#>  Smoking status                                    <.001     .14     
#>    No                                      77.2                      
#>    Yes                                     20.8                      
#>    (Missing)                                2.1                      
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Regular physical activity                         <.001     .21     
#>    No                                      54.2                      
#>    Yes                                     45.8                      
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Visited a dentist in the last 12 months           <.001     .22     
#>    No                                      29.5                      
#>    Yes                                     70.5

Continuous variables

table_continuous(
  sochealth,
  select = c(bmi, wellbeing_score, life_sat_health),
  by = education,
  labels = c(
    bmi = "Body mass index",
    wellbeing_score = "Well-being score",
    life_sat_health = "Satisfaction with health"
  ),
  p_value = TRUE,
  effect_size = TRUE
)
#> Descriptive statistics
#> 
#>  Variable                  Group              M     SD     Min    Max   
#> ──────────────────────────┼──────────────────────────────────────────────
#>  Body mass index           Lower secondary  28.09   3.47  18.20   38.90 
#>                            Upper secondary  26.02   3.43  16.00   37.10 
#>                            Tertiary         24.39   3.52  16.00   33.00 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Well-being score          Lower secondary  57.22  15.44  18.70   97.90 
#>                            Upper secondary  68.97  13.62  26.70  100.00 
#>                            Tertiary         76.85  13.23  40.40  100.00 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Satisfaction with health  Lower secondary   2.71   1.20   1.00    5.00 
#>                            Upper secondary   3.53   1.19   1.00    5.00 
#>                            Tertiary          4.11   1.04   1.00    5.00 
#> 
#>  Variable                  Group            95% CI LL  95% CI UL   n     p   
#> ──────────────────────────┼───────────────────────────────────────────────────
#>  Body mass index           Lower secondary    27.66      28.51    260  <.001 
#>                            Upper secondary    25.73      26.31    534        
#>                            Tertiary           24.04      24.74    394        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Well-being score          Lower secondary    55.33      59.10    261  <.001 
#>                            Upper secondary    67.82      70.12    539        
#>                            Tertiary           75.55      78.15    400        
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Satisfaction with health  Lower secondary     2.57       2.86    259  <.001 
#>                            Upper secondary     3.43       3.63    534        
#>                            Tertiary            4.01       4.21    399        
#> 
#>  Variable                  Group               ES     
#> ──────────────────────────┼────────────────────────────
#>  Body mass index           Lower secondary  η² = 0.13 
#>                            Upper secondary            
#>                            Tertiary                   
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Well-being score          Lower secondary  η² = 0.21 
#>                            Upper secondary            
#>                            Tertiary                   
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  Satisfaction with health  Lower secondary  η² = 0.16 
#>                            Upper secondary            
#>                            Tertiary                   
#> 
#> Missing values removed: bmi (12), life_sat_health (8).

This keeps the reporting structure consistent while still using the function that fits each variable type.

Model-based continuous variables

table_continuous_lm(
  sochealth,
  select = c(bmi, wellbeing_score, life_sat_health),
  by = sex,
  vcov = "HC3",
  statistic = TRUE
)
#> Continuous outcomes by Sex
#> 
#>  Variable                        M (Female)  M (Male)  Δ (Male - Female) 
#> ────────────────────────────────┼─────────────────────────────────────────
#>  Body mass index                   25.69      26.20          0.51        
#>  WHO-5 wellbeing index (0-100)     67.16      71.05          3.89        
#>  Satisfaction with health (1-5)     3.51       3.59          0.08        
#> 
#>  Variable                        95% CI LL  95% CI UL   t      p     R²    n   
#> ────────────────────────────────┼───────────────────────────────────────────────
#>  Body mass index                    0.09      0.93     2.38   .018  0.00  1188 
#>  WHO-5 wellbeing index (0-100)      2.12      5.65     4.32  <.001  0.02  1200 
#>  Satisfaction with health (1-5)    -0.06      0.22     1.11   .267  0.00  1192 
#> 
#> Note. Std. errors: heteroskedasticity-robust (HC3).

This is the better summary-table path when the article is already organized around simple linear models, weighted analyses, or robust standard errors.

The coefficient table

Once the substantive model is fitted, table_regression() produces the APA Table 3 coefficient summary. The same output argument controls rendering, so the regression table sits in the same reporting pipeline as the descriptive ones above:

fit <- lm(
  wellbeing_score ~ age + sex + smoking + physical_activity,
  data = sochealth
)
table_regression(
  fit,
  standardized = "refit",
  show_columns = c("b", "beta", "ci", "p"),
  vcov = "HC3"
)
#> Linear regression: wellbeing_score
#> 
#>  Variable               B       β        95% CI        p   
#> ────────────────────┼───────────────────────────────────────
#>  (Intercept)           64.18  -0.18  [60.95, 67.42]  <.001 
#>  age                    0.04   0.04  [-0.02,  0.10]   .169 
#>  sex:                                                      
#>    Female (ref.)         –      –          –          –    
#>    Male                 3.88   0.25  [ 2.10,  5.66]  <.001 
#>  smoking:                                                  
#>    No (ref.)             –      –          –          –    
#>    Yes                 -1.73  -0.11  [-3.92,  0.45]   .120 
#>  physical_activity:                                        
#>    No (ref.)             –      –          –          –    
#>    Yes                  2.70   0.17  [ 0.93,  4.48]   .003 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  n                   1175                                  
#>  R²                     0.03                               
#>  Adj.R²                 0.02                               
#> 
#> Note. Linear regression.
#> Std. errors: heteroskedasticity-robust (HC3).
#> β = standardised coefficient ("refit": outcome and numeric predictors z-scored, factor dummies on 0/1).

The default footer documents the variance estimator, flags standardised coefficients (β = standardised coefficient), and reports any multiplicity correction, so the inferential regime is visible without leaving the table. One thing it does not carry: the name of the standardisation method. Here standardized = "refit" produced the β column, but the footer would read the same under any of the five methods, so record the method in the table note or the text of the article.

Side-by-side reporting of competing specifications (e.g., unadjusted vs. covariate-adjusted, or lm vs. glm) is supported by passing a list of fits:

fit_unadj <- lm(wellbeing_score ~ smoking, data = sochealth)
fit_adj   <- lm(
  wellbeing_score ~ smoking + age + sex + physical_activity,
  data = sochealth
)
table_regression(
  list("Unadjusted" = fit_unadj, "Adjusted" = fit_adj),
  show_columns = c("b", "ci", "p")
)
#> Linear regression comparison: wellbeing_score
#> 
#>                                 Unadjusted                   Adjusted         
#>                       ──────────────────────────────  ─────────────────────── 
#>  Variable               B         95% CI        p       B         95% CI     
#> ────────────────────┼─────────────────────────────────────────────────────────
#>  (Intercept)           69.36  [68.36, 70.37]  <.001    64.18  [60.87, 67.49] 
#>  smoking:                                                                    
#>    No (ref.)             –          –          –         –          –        
#>    Yes                 -1.72  [-3.91,  0.47]   .124    -1.73  [-3.90,  0.43] 
#>  age                                                    0.04  [-0.02,  0.10] 
#>  sex:                                                                        
#>    Female (ref.)                                         –          –        
#>    Male                                                 3.88  [ 2.11,  5.65] 
#>  physical_activity:                                                          
#>    No (ref.)                                             –          –        
#>    Yes                                                  2.70  [ 0.93,  4.48] 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  n                   1175                            1175                    
#>  R²                     0.00                            0.03                 
#>  Adj.R²                 0.00                            0.02                 
#> 
#>                       Adju… 
#>                       ───── 
#>  Variable              p   
#> ────────────────────┼───────
#>  (Intercept)         <.001 
#>  smoking:                  
#>    No (ref.)        
#>    Yes                .117 
#>  age                  .171 
#>  sex:                      
#>    Female (ref.)    
#>    Male              <.001 
#>  physical_activity:        
#>    No (ref.)        
#>    Yes                .003 
#> 
#> Note. Linear regression models.
#> Std. errors: classical (OLS).

For binary or count outcomes, swap lm() for glm() and request response-scale reporting (odds ratios, incidence rate ratios, etc.):

fit_glm <- glm(
  smoking ~ age + sex + physical_activity,
  data = sochealth,
  family = binomial()
)
table_regression(
  fit_glm,
  exponentiate = TRUE,
  show_columns = c("b", "ci", "p", "ame", "ame_ci", "ame_p")
)
#> Logistic regression: smoking
#> 
#>  Variable              OR        95% CI       p     AME      95% CI        p   
#> ────────────────────┼───────────────────────────────────────────────────────────
#>  (Intercept)            0.21  [0.13, 0.36]  <.001                              
#>  age                    1.01  [1.00, 1.01]   .298   0.00  [-0.00, 0.00]   .297 
#>  sex:                                                                          
#>    Female (ref.)         –         –         –       –          –         –    
#>    Male                 0.95  [0.72, 1.26]   .723  -0.01  [-0.06, 0.04]   .723 
#>  physical_activity:                                                            
#>    No (ref.)             –         –         –       –          –         –    
#>    Yes                  1.02  [0.77, 1.35]   .883   0.00  [-0.04, 0.05]   .883 
#> ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
#>  n                   1175                                                      
#>  R² (McFadden)          0.00                                                   
#>  R² (Nagelkerke)        0.00                                                   
#>  AIC                 1220.5                                                    
#> 
#> Note. Logistic regression.
#> Std. errors: classical (Fisher information).
#> AME = average marginal effect; OR = odds ratio.
#> Coefficients exponentiated and displayed as OR; CI bounds exponentiated.

Average marginal effects (ame) are useful next to the odds ratio because they report a probability-scale change for each predictor — the quantity most reviewers want to interpret directly. Note the two p columns: the first tests the coefficient (the log odds ratio), ame_p tests the average marginal effect itself. The two can differ under non-linear links or interactions, which is why table_regression() warns if you request ame alongside p without also requesting ame_p.

For the epidemiological variant of Table 2 — a univariable screen of every candidate predictor set against the multivariable model — table_regression_uv() builds the whole two-part layout in one call; see the Univariable screening section of vignette("table-regression").

Choose the output format

All four functions support the same reporting formats:

Output Best use
"default" Quick console review in plain ASCII
"tinytable" Quarto or R Markdown documents
"gt" HTML output with styled reporting tables
"flextable" Office-first workflows; also renders in HTML
"excel" Spreadsheet handoff or downstream editing
"word" Direct .docx export
"clipboard" Fast pasting into another application

Pick the output based on where the table is going, not on the analysis itself. The underlying selection and grouping pattern stays the same.

If you want an object that fits naturally into Word and PowerPoint workflows but can also be rendered in HTML documents, flextable is a good choice:

if (requireNamespace("flextable", quietly = TRUE)) {
  table_continuous(
    sochealth,
    select = c(bmi, wellbeing_score, life_sat_health),
    by = education,
    output = "flextable"
  )
}

Post-process the returned table object

All four summary-table helpers return regular gt, tinytable, or flextable objects, so you can keep styling them with the native package API. This includes table_regression(): nothing about the fit-first interface changes what the rendering engine produces.

Use gt:: functions when you want to keep the gt workflow:

tab <- pkgdown_dark_gt(table_categorical(
  sochealth,
  select = c(smoking, physical_activity),
  by = education,
  labels = c(
    smoking           = "Smoking status",
    physical_activity = "Regular physical activity"
  ),
  output = "gt"
))

tab |>
  gt::tab_header(
    title = "Health behaviors by education",
    subtitle = "Categorical summary table"
  ) |>
  gt::tab_source_note(
    gt::md("*Percentages are computed within each education group.*")
  )
Health behaviors by education
Categorical summary table
Variable
Lower secondary
Upper secondary
Tertiary
Total
p
Cramer's V
n % n % n % n %
Smoking status                                     <.001 .14
    No 179 68.6 415 77.0 332 83.0 926 77.2          
    Yes  78 29.9 112 20.8  59 14.8 249 20.8          
    (Missing)   4  1.5  12  2.2   9  2.2  25  2.1          
Regular physical activity                                     <.001 .21
    No 177 67.8 310 57.5 163 40.8 650 54.2          
    Yes  84 32.2 229 42.5 237 59.2 550 45.8          
Percentages are computed within each education group.

Use tinytable:: functions when you want lightweight table-specific styling:

tab <- table_categorical(
  sochealth,
  select = c(smoking, physical_activity),
  by = education,
  labels = c(
    smoking           = "Smoking status",
    physical_activity = "Regular physical activity"
  ),
  output = "tinytable"
)

tab |>
  tinytable::style_tt(
    i = 2:3,
    j = 2:5,
    background = "red",
    color = "white",
    bold = TRUE
  )
Variable Lower secondary Upper secondary Tertiary Total p Cramer's V
n % n % n % n %
Smoking status                                     <.001 .14
    No 179 68.6 415 77.0 332 83.0 926 77.2          
    Yes  78 29.9 112 20.8  59 14.8 249 20.8          
    (Missing)   4  1.5  12  2.2   9  2.2  25  2.1          
Regular physical activity                                     <.001 .21
    No 177 67.8 310 57.5 163 40.8 650 54.2          
    Yes  84 32.2 229 42.5 237 59.2 550 45.8          

Use flextable:: functions when you want to keep working toward Office or HTML document output. The example is shown as code here because the dark pkgdown theme is not a reliable preview of the final flextable HTML rendering:

if (requireNamespace("flextable", quietly = TRUE)) {
  tab <- table_continuous(
    sochealth,
    select = c(bmi, wellbeing_score),
    by = education,
    output = "flextable"
  )

  tab |>
    flextable::theme_booktabs() |>
    flextable::autofit() |>
    flextable::fontsize(size = 10, part = "all")
}

Keep the detailed options in the function-specific articles

The dedicated articles go deeper into each function:

  • table_categorical() covers missing values, level filtering, association measures, and one-way frequency-style tables.
  • table_continuous() covers grouped descriptive statistics, parametric and nonparametric tests, and effect sizes.
  • table_continuous_lm() covers estimated marginal means or slopes from linear models, robust / cluster-robust / bootstrap / jackknife variance, case weights, additive covariate adjustment (G-computation or equal-weight), and four effect-size measures with noncentral CIs.
  • table_regression() covers single- and multi-model coefficient tables across 36 model classes (the map is vignette("table-regression-supported-models")), five standardisation methods (four for linear models, plus the glm-only pseudo-standardisation), partial effect sizes with noncentral-F CIs, average marginal effects, hierarchical (nested = TRUE) comparisons, multiplicity correction, and response-scale reporting for GLMs.

Use this vignette as the final reporting overview, then consult the function-specific articles when you need the detailed controls.