Daniel Sjoberg

Results 263 comments of Daniel Sjoberg

this was updated in gt v 0.6.0...need to take a look at the changes

To use gtsummary tables in Shiny, use as_gt(), then the Shiny render functions exported from gt. Is that what you're doing already? Do you have a small example you can...

Does this address your issue? https://stackoverflow.com/questions/64197029

Can you please test whether this is an issue with printing gtsummary tables or gt tables? Print a data frame with gt. I don't think what you're seeing is related...

Can you use `modify_header(text_interpret = "html")` ? This will change the default `gt::md()` to `gt::html()`. But you'll need to redefine the column headers where this is needed? Alternatively, you can...

gtsummary tables are exported to HTML, Word, RTF, PDF, pptx and more. I am not exactly sure what you're proposing to implement, but we cannot assume anywhere that HTML is...

Thank you for the thorough response. I'll go ahead and close this issue for now, and think about how this could be documented. 🌴

Ooo, looks like the warning may be in `as_gt()` OR perhaps even gt::print.gt_tbl()`

it's a warning from the gt print method

@themichjam what is it you'd like to see from this model summary? ``` r library(tidymodels) data(penguins) my_split % na.omit() %>% initial_split() rec % step_dummy(species) glmnet_spec % set_engine("glmnet") glmnet_fit % last_fit(my_split)...