Daniel Sjoberg
Daniel Sjoberg
The pkgdown site has the rendered tables on the site. Would it be nice/helpful to have a link to the pgkdown help file site from the help file to easily...
We will also need to support `add_ci.tbl_svysummary()`
There are many tables for analytic results that are the primary result among all subjects on the first line, followed by the same result stratified by another variable. I think...
We need an ARD-based function for items like AE summaries. This still needs some thought. First proposed API.... ```r tbl_hierarchical( data = ADAE, heirarchy = c(SOC, AE), by, # can...
``` r library(gtsummary) trial |> select(grade, response) |> mutate(grade = paste("Grade", grade)) |> tbl_strata2( strata = grade, .tbl_fun = ~ .x %>% tbl_summary( label = list(response = .y), missing =...
This should be in conjunction with the footnotes updates https://github.com/ddsjoberg/gtsummary/issues/1675
In the past, I've posted on SO with solutions that access undocumented internal objects...I shouldn't have done that. At some point, it would be kind to go back to old...
Sometimes we're cobbling together tables, and we don't need to merge on alllll the variables we do now, and we just want to merge on the label column...this could make...
this is helpful when merging two tables with the same number of rows, but the merging columns are different (e.g. different variables)
We can' just make it a method because of reasons outlined in #1851 I think we can de-prioritize this. Within the ARD framework, it's already pretty easy to stratify analysis...