https://github.com/outboundbird/tlfshell
Automatically generate mocking TLF tables and figures
https://github.com/outboundbird/tlfshell
package r
Last synced: about 1 year ago
JSON representation
Automatically generate mocking TLF tables and figures
- Host: GitHub
- URL: https://github.com/outboundbird/tlfshell
- Owner: outboundbird
- License: mit
- Created: 2025-03-18T15:00:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-25T15:55:14.000Z (about 1 year ago)
- Last Synced: 2025-03-25T16:28:43.082Z (about 1 year ago)
- Topics: package, r
- Language: R
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tlfshell
Automatically generate TLF tables and figures
https://pharmaverse.org/e2eclinical/tlg/
## to do
### Listing
- biomarker listing
### Tables
Descriptives
- demographic
- dosage groups: baseline, follow-up, change from baseline
- tissue site groups + dose group:
examples:
```r
gen_mtx(
section_grp(arms, "n_title"),
section_cat("BMI", c("Underweight", "Normal", "Overweight", "Obese"), arms),
section_cat("Sex", c("Male", "Female"), arms),
section_cat("Genotype", c("AA", "Aa", "aa"), arms),
section_num("fAAT", arms),
section_num("aAAT", arms)
)
```
There are severa templates available for illustration:
```r
# demographic table
template.demo()
# change from baseline table
template.chg()
# listing table
template.lst()
```
## Other R packages
- [R for Clinical Study Reports and Submission](https://r4csr.org/)
- [`tidytlg`](https://pharmaverse.github.io/tidytlg/main/articles/tidytlg.html)
- [TLG Catalog](https://insightsengineering.github.io/tlg-catalog/stable/)
- [Pharmaverse](https://pharmaverse.org/e2eclinical/tlg/)
- [Tables in Clinical Trials with R](https://rconsortium.github.io/rtrs-wg/)