gtsummary icon indicating copy to clipboard operation
gtsummary copied to clipboard

Presentation-Ready Data Summary and Analytic Result Tables

Results 149 gtsummary issues
Sort by recently updated
recently updated
newest added

@larmarange and I recently had a chat about gtsummary themes. @larmarange indicated some students have confusion with gtsummary themes because they are specified differently than ggplot2 themes. Admittedly, I do...

**Problem** I would like to export tbl_regression() objects to LaTeX, using `as_kable_extra()` and the `qjecon` theme, where beta coefficients are reported with standard errors _under_ the coefficients in brackets. Here...

I think when merging mixed models tables, it would make sense to sepatate the fixed from the random effects part. This is how it currently looks like in _gtsummary_ (you...

``` r library(gtsummary) packageVersion("gtsummary") #> [1] '1.7.2' mtcars |> tbl_summary( by = vs, include = c(mpg, am) ) |> add_overall() |> add_ci() |> as_kable() #> ✖ `add_ci()` added mean CI...

Currently, tbl_svysummary() allows several statistics output for categorical variables. Specifically, the following 2: - `p`: percentage - `p.std.error`: standard error of the sample proportion computed with [survey::svymean()] For tables, it...

Dear @ddsjoberg I'm currently adding support for zero-inflated models in `broom.helpers`, cf. https://github.com/larmarange/broom.helpers/pull/233 With such models, you end-up with two sets of coefficients, for the two components of the model...

use the internal `render_raw_html()` function to add more html checks of gt output. should check footnotes, source notes, spanning headers....all types of modifications are made properly.

this would need to be implemented in gt, flextable...does the excel huxtable even have footnotes? ![image](https://user-images.githubusercontent.com/26774684/212556808-566fc5bd-1f05-4e66-bdd7-07bb760fde1d.png)

Sometimes, when using a `by` argument with `tbl_summary()`, it could be relevant to have an overall row at the beginning or the end of the table (similar to what already...