Get Started

Overview of TLG Programming

tidytlg provides a framework of creating TLG outputs for clinical study report. The TLG programming workflow includes the following steps:

We will illustrate the above steps by creating a demographic table first, and then follow by examples of creating listing and graph.

Prep environment

To set up the R environment, you can set the path objects of the input folder and output folder consistently for all TLG programs. The analysis datasets and other required inputs such as the titles file and column metadata file are placed in the input folder, while the output folder will be used to store the output files. The envsetup package can be used to set up the R environment for TLG programming.

titles and footnotes

The information for titles and footnotes for each TLG can be stored in an excel file called titles.xls (see below snapshot), which will be used later to create the outputs.

column metadata

Column metadata provides the column structure of the table layout and includes the following variables:

Please see below for a snapshot of column_metadata.xlsx.

Different types of column layouts identified by different tbltype can be stored in an excel file called column_metadata.xlsx. Within each tbltype, the coldef variable defines the order of the column based on the column variable used for creating the output (typically the numeric treatment variable, TRT01PN, is used as the column variable). For example, there are 3 columns for tbltype = “type1” in the above snapshot and the column layout is defined as follows: the first column of summary statistics represents the treatment group of TRT01PN = 0 with the column header of Placebo defined by decode, the second and third columns represent the Low Dose and High Dose groups respectively with the spanning header of Xanomeline defined by the span1 variable.

Users can also include the column that is derived from combination of individual columns. For example, the tbltype of type3 include the 4th column of combined Low Dose and High Dose as well as the 5th column of total group. Please see below for the snapshot of column headers defined by type3.

We will use the adsl data from the PHUSE Test Data Factory to illustrate the creation of a demographic table.

# Prep Environment -------------------------------------------------------------------------------------
library(dplyr)
library(haven)
library(tidytlg)

# read adsl from PhUSE test data factory
testdata <- "https://github.com/phuse-org/TestDataFactory/raw/main/Updated/TDF_ADaM/"
adsl <- read_xpt(url(paste0(testdata,"adsl.xpt")))

Process data

Before generating analysis summary, the analysis data need to be processed first as shown in the code below.

# Process Data -----------------------------------------------------------------------------------------
adsl <- adsl %>%
  filter(ITTFL == "Y") %>%
  mutate(SEX = factor(SEX, levels = c("M", "F", "U"), labels = c("Male", "Female", "Unknown"))) %>% 
  tlgsetup(var = "TRT01PN",
           column_metadata_file = system.file("extdata/column_metadata.xlsx", package = "tidytlg"),
           tbltype = "type3")

The above code perform the tasks below:

If you need multiple analysis datasets for creating TLG, tlgsetup will need to be applied to each dataset. Therefore, you will have a consistent column variable of colnbr for creating analysis summary.

Generate results

tidytlg provides 3 functions, univar, freq, and nested_freq, to generate analysis summary of descriptive statistics (univariate statistics and count (percentages)). For more details, please see the frequency analysis vignette("freq") and the univariate statistical analysis vignette("univar").

# Generate Results -------------------------------------------------------------------------------------

## Analysis set row
t1 <- adsl %>%
  freq(colvar = "colnbr",
       rowvar = "ITTFL",
       statlist = statlist("n"),
       subset = ITTFL == "Y",
       rowtext = "Analysis set: ITT") 

## Univariate summary for AGE
t2 <- adsl %>%
  univar(colvar = "colnbr",
         rowvar = "AGE",
         statlist = statlist(c("N", "MEANSD", "MEDIAN", "RANGE", "IQRANGE")),
         decimal = 0,
         row_header = "Age, years") 

## Count (percentages) for SEX
t3 <- adsl %>%
  freq(colvar = "colnbr",
       rowvar = "SEX",
       statlist = statlist(c("N","n (x.x%)")),
       row_header = "Gender")

The above function calls generate the requested analysis rows for the table output sequentially and store the results in individual objects (i.e. t1, t2, t3). The next step is to combine analysis results into a single tbl dataframe through the bind_table function call.

# Format Results ---------------------------------------------------------------------------------------

tbl <- bind_table(t1, t2, t3,
       column_metadata_file = system.file("extdata/column_metadata.xlsx", package = "tidytlg"),
       tbltype = "type3")

The above bind_table function call performs the following tasks:

Output results

The tbl data frame is the main input to the gentlg function for creating the RTF/HTML outputs.

The basic structure of tbl includes label, col1, col2, …, coln, where

All other columns contain formatting instructions to create the RTF/HTML outputs. For tweaking the formatting variables to customize the table layout, please see the vignette("tbl_manipulation") for more details.

knitr::kable(tbl)
label col1 col2 col3 col4 col5 row_type anbr indentme roworder newrows newpage
Analysis set: ITT 86 84 84 168 254 HEADER 1 0 1 0 0
Age, years HEADER 2 0 1 1 0
N 86 84 84 168 254 N 2 1 2 0 0
Mean (SD) 75.2 (8.59) 75.7 (8.29) 74.4 (7.89) 75.0 (8.09) 75.1 (8.25) VALUE 2 2 3 0 0
Median 76.0 77.5 76.0 77.0 77.0 VALUE 2 2 4 0 0
Range (52; 89) (51; 88) (56; 88) (51; 88) (51; 89) VALUE 2 2 5 0 0
IQ range (69.0; 82.0) (71.0; 82.0) (70.5; 80.0) (71.0; 81.0) (70.0; 81.0) VALUE 2 2 6 0 0
Gender HEADER 3 0 1 1 0
N 86 84 84 168 254 N 3 1 2 0 0
Male 33 (38.4%) 34 (40.5%) 44 (52.4%) 78 (46.4%) 111 (43.7%) VALUE 3 2 3 0 0
Female 53 (61.6%) 50 (59.5%) 40 (47.6%) 90 (53.6%) 143 (56.3%) VALUE 3 2 4 0 0
Unknown 0 0 0 0 0 VALUE 3 2 5 0 0

The gentlg function call below will create the rtf output using the tblid as the file name in the folder defined by the opath argument. Please ensure that the titles.xls file contains the records of titles and footnotes for the specified tblid.

tblid <- "Table01"

gentlg(huxme       = tbl,
       opath       = file.path(working_dir), 
       file        = tblid,
       orientation = "landscape",
       title_file = system.file("extdata/titles.xls", package = "tidytlg"))

To create the html output, users need to specify the format argument as “HTML” and print.hux argument as FALSE in the gentlg call.

gentlg(huxme       = tbl,
       format      = "HTML",
       print.hux = FALSE,
       file        = tblid,
       orientation = "landscape",
       title_file = system.file("extdata/titles.xls", package = "tidytlg"))
Table01:   Demographic and Baseline Characteristics; Intent-to-treat Analysis Set
Xanomeline
Placebo
Low Dose
High Dose
Combined
Total
Analysis set: ITT
868484168254
Age, years
N
868484168254
Mean (SD)
75.2 (8.59)75.7 (8.29)74.4 (7.89)75.0 (8.09)75.1 (8.25)
Median
76.077.576.077.077.0
Range
(52; 89)(51; 88)(56; 88)(51; 88)(51; 89)
IQ range
(69.0; 82.0)(71.0; 82.0)(70.5; 80.0)(71.0; 81.0)(70.0; 81.0)
Gender
N
868484168254
Male
33 (38.4%)34 (40.5%)44 (52.4%)78 (46.4%)111 (43.7%)
Female
53 (61.6%)50 (59.5%)40 (47.6%)90 (53.6%)143 (56.3%)
Unknown
00000

Key: IQ = interquartile
Note: N reflects non-missing values
[table01.html][] 18OCT2023, 14:12

Users can also include superscripts, subscripts, or line breaks via unicode. Please see the vignette("symbols") for more details. Besides using univar, freq, and nested_freq functions to create the tbl dataframe, users can use other R packages to create analysis results and perform data wrangling to fit the tbl structure, which can be passed into the gentlg function call for generating the desired outputs.

Listing programming

The above workflow can also be used to create listings. Users need to prepare the data and assign it to tbl. In the gentlg function, users need to pay attention to:

# Prep Environment ---------------------------------------------------------------------------------------
library(dplyr)
library(haven)
library(tidytlg)

adsl <- cdisc_adsl
adae <- cdisc_adae

# Process Data --------------------------------------------------------------------------------------------
adsl <- adsl %>%
  filter(SAFFL == "Y") %>%
  select(USUBJID, SAFFL, TRT01AN, TRT01A) 

adae <- adae %>%
  filter(SAFFL == "Y" & TRTEMFL == "Y") %>%
  mutate(BSPT  = paste(AEBODSYS, "[", AEDECOD, "]"),
         SAEFL = if_else(AESER == "Y", "Yes", "No"),
         DTHFL = if_else(AEOUT == "FATAL", "Yes", "No")) %>%
   select(USUBJID, ASTDY, TRTA, BSPT, AETERM, SAEFL, DTHFL) 

tbl <- inner_join(adsl, adae, by = "USUBJID") %>%   
  arrange(TRT01AN, USUBJID, ASTDY) %>%   
  select(TRT01A, USUBJID, ASTDY, TRTA, BSPT, AETERM, SAEFL, DTHFL) %>% 
  filter(USUBJID %in% c("01-701-1015", "01-701-1023"))

# Output Results ------------------------------------------------------------------------------------------
gentlg(huxme       = tbl,
       tlf         = "l",
       format      = "HTML",
       print.hux = FALSE,
       orientation = "landscape",
       file        = "Listing01",
       title       = "Listing of Adverse Events",
       idvars      = c("TRT01A", "USUBJID"),
       wcol        = 0.15,
       colheader   = c("Treatment Group",
                       "Subject ID",
                       "Study Day of AE",
                       "Treatment Period",
                       "Body System [Preferred Term]",
                       "Verbatim Term",
                       "Serious",
                       "Fatal"))
Listing01:   Listing of Adverse Events
Treatment Group
Subject ID
Study Day of AE
Treatment Period
Body System [Preferred Term]
Verbatim Term
Serious
Fatal
Placebo01-701-10152PlaceboGENERAL DISORDERS AND ADMINISTRATION SITE CONDITIONS [ APPLICATION SITE ERYTHEMA ]APPLICATION SITE ERYTHEMANoNo
2PlaceboGENERAL DISORDERS AND ADMINISTRATION SITE CONDITIONS [ APPLICATION SITE PRURITUS ]APPLICATION SITE PRURITUSNoNo
8PlaceboGASTROINTESTINAL DISORDERS [ DIARRHOEA ]DIARRHOEANoNo
01-701-10233PlaceboSKIN AND SUBCUTANEOUS TISSUE DISORDERS [ ERYTHEMA ]ERYTHEMANoNo
3PlaceboSKIN AND SUBCUTANEOUS TISSUE DISORDERS [ ERYTHEMA ]ERYTHEMANoNo
3PlaceboSKIN AND SUBCUTANEOUS TISSUE DISORDERS [ ERYTHEMA ]ERYTHEMANoNo
22PlaceboCARDIAC DISORDERS [ ATRIOVENTRICULAR BLOCK SECOND DEGREE ]ATRIOVENTRICULAR BLOCK SECOND DEGREENoNo
[listing01.html][] 18OCT2023, 14:12

Graph programming

To create the graph output, tidytlg provides a framework of integrating the png file with titles and footnotes for producing the rtf or html output.

In the gentlg function, users need to:

The code below will create the rtf output of the plot.

# Prep Environment ---------------------------------------------------------------------------------------
library(dplyr)
library(haven)
library(ggplot2)
#> 
#> Attaching package: 'ggplot2'
#> The following object is masked from 'package:huxtable':
#> 
#>     theme_grey
library(tidytlg)

# read adsl from PhUSE test data factory
testdata <- "https://github.com/phuse-org/TestDataFactory/raw/main/Updated/TDF_ADaM/"
adsl <- read_xpt(url(paste0(testdata,"adsl.xpt")))

tblid <- "Graph01"

# Process Data --------------------------------------------------------------------------------------------
adsl <- adsl  %>%
  filter(ITTFL == "Y") %>%
  select(USUBJID, ITTFL, TRT01PN, TRT01P, AGE, SEX, HEIGHTBL, WEIGHTBL) %>%
  mutate(SEX = factor(SEX, levels = c("M", "F"), labels = c("Male", "Female")))

# Generate Results ----------------------------------------------------------------------------------------
 
plot <- ggplot(data = adsl, aes(x = HEIGHTBL, y = WEIGHTBL)) +
  geom_point() +
  labs(x = "Baseline Height (cm)",
       y = "Baseline Weight (kg)") +
  facet_wrap(~SEX, nrow=1)

# create png file
png(file.path(working_dir, paste0(tblid,".png")), width=2800, height=1300, res=300, type = "cairo")

plot
#> Warning: Removed 1 rows containing missing values (`geom_point()`).

dev.off()
#> png 
#>   2

# Output Results ------------------------------------------------------------------------------------------

gentlg(tlf = "g",
       plotnames = file.path(system.file("extdata", package = "tidytlg"), paste0(tblid,".png")),
       plotwidth = 10,
       plotheight = 5,
       orientation = "landscape",
       opath       = file.path(working_dir),, 
       file = tblid,
       title_file = system.file("extdata/titles.xls", package = "tidytlg"))

Metadata method

Besides building the table section-by-section as shown above, we can use the table metadata approach as an efficient alternative for generating outputs. Table metadata is a data frame describing the data, functions and arguments needed to produce your table results. The table metadata shown below can be used to create the same table output as above. Each row in the table metadata describes how a tbl chunk will be created by the function defined in the func column. The rest of the columns defines the arguments (i.e. df, colvar, rowvar, statlist, rowtext, row_header) that will be passed into the function.

Once table metadata is defined, users just need to call the generate_results function with the column metadata define in the column_metadata_file and tbltype arguments to create the tbl dataframe. In the processing data step, users don’t need to call tlgsetp, since tlgsetup is embedded within the generate_results function. That’s why we need to specify the column metadata in the generate_results call.

library(dplyr)
library(haven)
library(tidytlg)

# read adsl from PhUSE test data factory
testdata <- "https://github.com/phuse-org/TestDataFactory/raw/main/Updated/TDF_ADaM/"
adsl <- read_xpt(url(paste0(testdata,"adsl.xpt")))

# Process data
adsl <- adsl %>%
  filter(ITTFL == "Y") %>%
  mutate(SEX = factor(SEX, levels = c("M", "F", "U"), labels = c("Male", "Female", "Unknown")))

# define table metadata
table_metadata <- tibble::tribble(
  ~func,     ~df,   ~rowvar, ~decimal, ~rowtext,     ~row_header, ~statlist,         ~subset,
  "freq",  "adsl",  "ITTFL",     NA, "Analysis set: ITT",     NA, statlist("n"),  "ITTFL == 'Y'",
  "univar", "adsl",   "AGE",      0,         NA, "Age (Years)",           NA,              NA,
  "freq",  "adsl",    "SEX",     NA,         NA, "Gender", statlist(c("N", "n (x.x%)")),   NA
) %>%
  mutate(colvar  = "TRT01PN")

# Generate results
tbl <- generate_results(table_metadata, 
                        column_metadata_file = system.file("extdata/column_metadata.xlsx", package = "tidytlg"),
                        tbltype = "type3") 

# Output results
tblid <- "Table01"

gentlg(huxme       = tbl,
       format      = "HTML",
       print.hux = FALSE,
       file        = tblid,
       orientation = "landscape",
       title_file = system.file("extdata/titles.xls", package = "tidytlg"))
Table01:   Demographic and Baseline Characteristics; Intent-to-treat Analysis Set
Xanomeline
Placebo
Low Dose
High Dose
Combined
Total
Analysis set: ITT
868484168254
Age (Years)
N
868484168254
Mean (SD)
75.2 (8.59)75.7 (8.29)74.4 (7.89)75.0 (8.09)75.1 (8.25)
Median
76.077.576.077.077.0
Range
(52; 89)(51; 88)(56; 88)(51; 88)(51; 89)
IQ range
(69.0; 82.0)(71.0; 82.0)(70.5; 80.0)(71.0; 81.0)(70.0; 81.0)
Gender
N
868484168254
Male
33 (38.4%)34 (40.5%)44 (52.4%)78 (46.4%)111 (43.7%)
Female
53 (61.6%)50 (59.5%)40 (47.6%)90 (53.6%)143 (56.3%)
Unknown
00000

Key: IQ = interquartile
Note: N reflects non-missing values
[table01.html][] 18OCT2023, 14:12

By processing

There are two types of by-processing that tidytlg functions can provide:

The code below provides an example of summarizing age and race by gender using tablebyvar.

library(dplyr)
library(haven)
library(tidytlg)

# read adsl from PhUSE test data factory
testdata <- "https://github.com/phuse-org/TestDataFactory/raw/main/Updated/TDF_ADaM/"
adsl <- read_xpt(url(paste0(testdata,"adsl.xpt")))

# Process data
adsl <- adsl %>%
  filter(ITTFL == "Y") %>%
  mutate(SEX = factor(SEX, levels = c("M", "F"), labels = c("Male", "Female")))

# define table metadata
table_metadata <- tibble::tribble(
  ~func,     ~df,   ~rowvar, ~decimal, ~rowtext,     ~row_header, ~statlist,         ~subset, ~tablebyvar,
  "univar", "adsl",   "AGE",      0,         NA, "Age (Years)",           NA,              NA, "SEX",
  "freq",  "adsl",    "RACE",     NA,         NA, "Race", statlist(c("N", "n (x.x%)")),   NA, "SEX"
) %>%
  mutate(colvar  = "TRT01PN")

# Generate results
tbl <- generate_results(table_metadata, 
                        column_metadata_file = system.file("extdata/column_metadata.xlsx", package = "tidytlg"),
                        tbltype = "type3") 

# Output results
tblid <- "Table01"

gentlg(huxme       = tbl,
       format      = "HTML",
       print.hux = FALSE,
       file        = tblid,
       orientation = "landscape",
       title_file = system.file("extdata/titles.xls", package = "tidytlg"))
Table01:   Demographic and Baseline Characteristics; Intent-to-treat Analysis Set
Xanomeline
Placebo
Low Dose
High Dose
Combined
Total
Male
Age (Years)
N
33344478111
Mean (SD)
73.4 (8.15)75.6 (8.69)74.1 (8.16)74.8 (8.37)74.4 (8.29)
Median
74.077.577.077.077.0
Range
(52; 85)(51; 88)(56; 86)(51; 88)(51; 88)
IQ range
(69.0; 80.0)(68.0; 82.0)(69.0; 80.5)(69.0; 81.0)(69.0; 81.0)
Race
N
33344478111
AMERICAN INDIAN OR ALASKA NATIVE
001 (2.3%)1 (1.3%)1 (0.9%)
BLACK OR AFRICAN AMERICAN
3 (9.1%)03 (6.8%)3 (3.8%)6 (5.4%)
WHITE
30 (90.9%)34 (100.0%)40 (90.9%)74 (94.9%)104 (93.7%)
Female
Age (Years)
N
53504090143
Mean (SD)
76.4 (8.73)75.7 (8.09)74.7 (7.67)75.2 (7.88)75.7 (8.19)
Median
78.077.576.076.077.0
Range
(59; 89)(54; 87)(56; 88)(54; 88)(54; 89)
IQ range
(70.0; 84.0)(72.0; 81.0)(72.0; 79.0)(72.0; 81.0)(72.0; 81.0)
Race
N
53504090143
AMERICAN INDIAN OR ALASKA NATIVE
00000
BLACK OR AFRICAN AMERICAN
5 (9.4%)6 (12.0%)6 (15.0%)12 (13.3%)17 (11.9%)
WHITE
48 (90.6%)44 (88.0%)34 (85.0%)78 (86.7%)126 (88.1%)

Key: IQ = interquartile
Note: N reflects non-missing values
[table01.html][] 18OCT2023, 14:12

In summary, rowbyvar is used to create the by-variable summary for one rowvar in a single function call. To perform sub-group analysis, users need to specify tablebyvar in every function calls except the analysis population row.