Davide Garolini

Results 70 issues of Davide Garolini

https://github.com/Roche/rtables/blob/b966c99a56c98a6ae5453fd8da2fef66507be8c5/R/tt_toString.R#L24

documentation
fast fix

This should replace the following with a single summary function with all the intended information. - [ ] `row_paths_summary` - [ ] `col_paths_summary` Please note that there will be at...

enhancement
discussion
sme

I was reading this nice [post](https://blog.r-hub.io/2020/11/18/testthat-utility-belt/), and I have already solved the library issues in PR #359. This follows @gmbecker [comment#PR359](https://github.com/Roche/rtables/pull/359#discussion_r960044092_) for suggested package. Here, I argue that it could...

enhancement
discussion
automation
sme

``` r library(rtables) #> Loading required package: formatters #> Loading required package: magrittr #> #> Attaching package: 'rtables' #> The following object is masked from 'package:utils': #> #> str library(dplyr)...

bug
sme

Refinements need the following fixes: - [x] refactor "auto" widths to have `layout = "fixed"` otherwise. See #766 - [x] topleft vertical alignment and boldness - [ ] topleft could...

enhancement
sme

Fixes #715 and https://github.com/insightsengineering/formatters/issues/124

documentation
sme

_Originally posted by @anajens in https://github.com/insightsengineering/sme-tasks/issues/184#issuecomment-1714011239_

enhancement
discussion
sme

This issue keeps track of a workaround currently able to solve the split_cols after split_cols_multivar Error: ```r DM_tmp % mutate(SEX = factor(SEX)) mean_lab % build_table(DM_tmp) ``` ``` Error: Error applying...

bug
enhancement
documentation
sme

Original application design: ```r DM_tmp % mutate(SEX = factor(SEX)) lyt % split_rows_by("STRATA1") %>% split_cols_by_multivar(vars = c("BMRKR1", "BMRKR1"), varlabels = c("M", "SD")) %>% analyze_colvars(afun = list(mean, sd), format = "xx.x") lyt...

enhancement
sme