Supplementing and Enhancing rpact’s Graphical Capabilities with ggplot2

Utilities
Means
Power simulation
The aim of this document is to give a brief description on how easy it is to supplement and enhance plots generated in rpact by use of the ggplot2 package and associated language.

Introduction

We will illustrate the generation of the plots by assessing the simulated Type I error rate of a group sequential and adaptive inverse normal design in a sample size recalculation setting. It is well known that the adaptive inverse normal designs in contrast to group sequential designs controls the overall Type I error rate even in a setting of sample size recalculation. The goal of this exercise is to present this fact in a single comprehensive output.

With rpact it is very convenient to calculate the necessary components: We will analyze both design choices by rpact, retrieve the results and arrange them by the means of ggplot2.

Loading the packages

We start by loading the required two packages.

library(ggplot2)
library(rpact)
packageVersion("rpact")
[1] '3.5.1'

Initialize the group sequential and adaptive inverse normal design

After the two packages were loaded, the group sequential (dGS) and adaptive inverse normal (dIN) design can be generated. Throughout this document, we will use the default parameter settings from rpact.

dGS <- getDesignGroupSequential()
dIN <- getDesignInverseNormal()

We can now take a look into both designs and inspect their default values. These are identical outputs although the way of calculating the test statistics over the stages differ.

kable(dGS)

Design parameters and output of group sequential design

Default parameters

  • Type of design: O’Brien & Fleming
  • Maximum number of stages: 3
  • Stages: 1, 2, 3
  • Information rates: 0.333, 0.667, 1.000
  • Significance level: 0.0250
  • Type II error rate: 0.2000
  • Two-sided power: FALSE
  • Test: one-sided
  • Tolerance: 0.00000001

Output

  • Cumulative alpha spending: 0.0002592, 0.0071601, 0.0250000
  • Critical values: 3.471, 2.454, 2.004
  • Stage levels (one-sided): 0.0002592, 0.0070554, 0.0225331
kable(dIN)

Design parameters and output of inverse normal combination test design

Default parameters

  • Type of design: O’Brien & Fleming
  • Maximum number of stages: 3
  • Stages: 1, 2, 3
  • Information rates: 0.333, 0.667, 1.000
  • Significance level: 0.0250
  • Type II error rate: 0.2000
  • Two-sided power: FALSE
  • Test: one-sided
  • Tolerance: 0.00000001

Output

  • Cumulative alpha spending: 0.0002592, 0.0071601, 0.0250000
  • Critical values: 3.471, 2.454, 2.004
  • Stage levels (one-sided): 0.0002592, 0.0070554, 0.0225331

In the output we see some important characteristics like the type of design (OF = O’Brien and Fleming), the maximum number of stages (3), the information rates (0.333, 0.667, 1.000), the significance level (0.025) and the stage level information (0.0002592, 0.0070554, 0.0225331).

We can also easily plot the stage level information by means of rpact.

plot(dGS, type = 3)

plot(dIN, type = 3)

With these commands, rpact creates the plots that shows the three stage levels (0.0025, 0.0070554, 0.0225331) visually together with the corresponding information rates (0.333, 0.667, 1.000) and the significance level (0.025, dashed line).

Modification of the rpact base plots with ggplot2 (aesthetic) commands

We note that the plots for the two designs are identical. This is expected as the same boundary type (O’Brien and Fleming) was used for both designs. So, we might want to restrict ourselves to present only one stage level plot. Instead, we can include this information in a custom title. This is achieved by combining the rpact “base” plot with ggplot2 aesthetics commands as follows:

plot(dGS, type = 3) +
    ggtitle("Stage level plot of the adaptive and group sequential design")

All ggplot2 aesthetic commands which modify an existing plot are initiated by a plus sign “+”. Thereafter, we can add the particular command in the ggplot2 language to specify how we want to modify the plot. Luckily, all rpact graphics are compatible with ggplot2.

Modifications are not restricted to additions to existing plots, as demonstrated by adding a new title, but they can also re-model the initial plot. For example, we can change the limits of the x- and y-axis post-hoc.

plot(dGS, type = 3) + xlim(0, 1) + ylim(0, dGS$alpha + 0.005)

Or do both:

plot(dGS, type = 3) +
    ggtitle("Stage level plot of the adaptive and group sequential design") +
    xlim(0, 1) + ylim(0, dGS$alpha + 0.005)

To make the plot more self-explanatory, we might want to further add

  • a visual highlight for the significance level of a single stage design by using the geom_point and annotate commands
  • a better visual illustration of the local stage levels by adding horizontal reference lines by usign geom_hline commands
  • color to the three different stages in the plot by using the aesthetic command geom_point
  • the numerical values of the stage levels to plot by using appropriate annotate commands
plot(dGS, type = 3) +
    ggtitle("Stage level plot of the adaptive and group sequential design") +
    xlim(0, 1) + ylim(0, dGS$alpha + 0.005) +
    geom_point(aes(x = 1, y = dGS$alpha), colour = "red", size = 3) +
    annotate(
        geom = "text", label = "Final significance level of single-stage design",
        color = "red", x = dGS$informationRates[3], y = dGS$alpha, vjust = -2, hjust = 1
    ) +
    geom_hline(yintercept = dGS$stageLevels, linetype = "dashed", color = "grey") +
    geom_point(aes_(x = dGS$informationRates[1], y = dGS$stageLevels[1]),
        color = "blue", size = 3
    ) +
    geom_point(aes_(x = dGS$informationRates[2], y = dGS$stageLevels[2]),
        color = "green", size = 3
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[1], 5),
        x = dGS$informationRates[1], y = dGS$stageLevels[1], vjust = -2
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[2], 5),
        x = dGS$informationRates[2], y = dGS$stageLevels[2], vjust = -3
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[3], 5),
        x = dGS$informationRates[3], y = dGS$stageLevels[3], vjust = 4
    )
Warning: `aes_()` was deprecated in ggplot2 3.0.0.
ℹ Please use tidy evaluation idioms with `aes()`

Note that the commands pull the required information directly from the design object and thus would automatically adjust to design changes like, for example, a switch to Pocock boundaries.

Illustrating Type I error control of adaptive designs with rpact and ggplot2

In the last part of this document we investigate the Type I error rate of the chosen group sequential and adaptive inverse normal design in a sample size recalculation setting and present the simulation results visual in the plot.

Simulating the Type I error rate

Using getSimulationMeans() we can easily simulate the operating characteristics of designs. To simulate the Type I error rate, we specify the null hypothesis as an alternative hypothesis with zero therapy effect (alternative = 0). The simulated overall rejection rate of the designs then corresponds to the Type I error rate.

We assume a scenario with two interim analyses after 20 and 40 subjects and a final analysis after 60 subjects. We allow for a recalculation of the sample size for the next stage based on a conditional power of 80%. The recalculated sample size per stage is limited to be between 20 and 80. We perform a total of 100’000 simulations to get sufficient precision for the simulated Type I error rate. The seed = 12345 ensures that the simulated values are reproduced, e.g., for documentary purposes. This is done for both, the group sequential and the inverse normal design specification.

iterations <- 100000
seed <- 12345
dGSsim <- getSimulationMeans(dGS,
    plannedSubjects = c(20, 40, 60),
    conditionalPower = 0.8, alternative = 0,
    minNumberOfSubjectsPerStage = c(20, 20, 20),
    maxNumberOfSubjectsPerStage = c(20, 80, 80),
    maxNumberOfIterations = iterations,
    seed = 12345
)
summary(kable(dGSsim))

Length Class Mode 1 knit_asis character

dINsim <- getSimulationMeans(dIN,
    plannedSubjects = c(20, 40, 60),
    conditionalPower = 0.8, alternative = 0,
    minNumberOfSubjectsPerStage = c(20, 20, 20),
    maxNumberOfSubjectsPerStage = c(20, 80, 80),
    maxNumberOfIterations = iterations,
    seed = 12345
)
summary(kable(dINsim))

Length Class Mode 1 knit_asis character

Extraction of the simulated Type I error rate of both designs

We can easily extract the simulated Type I error rate or overall rejection rates under the null hypothesis. This value is stored in the overallReject parameter of the simulation outputs.

dGSalpha <- dGSsim$overallReject
dGSalpha
[1] 0.03193
dINalpha <- dINsim$overallReject
dINalpha
[1] 0.02507

The results of the simulation show that, in a setting of sample size recalculation, the group sequential design does not control the nominal significance level. The overall rejection rate of the group sequential design (0.03193) is larger than the significance level (0.025). The inverse normal design controls the Type I error rate as the overall rejection rate (0.02507) is close to the significance level of 0.025.

Final Plot

In the final plot of this example, we try to present the core learning of the previous section in a single overarching plot. The final plot should be management ready, meaning include all relevant information, be visually appealing and self-explanatory. The intention of the plot is to transfer the information that a group sequential design and adaptive inverse normal design with same parameters will feature the same stage levels at the corresponding information rates, the same overall significance level, but different overall rejection rates in a setting of sample size recalculation.

For the final plot, we start with all (plot and aesthetic) commands, which we used in the chapter Modification of the rpact base chart with ggplot2 (aesthetic) commands. Additional information from the simulation results are subsequently added in.

# create base ggplot object
createdPlot <- plot(dGS, type = 3)

# modify the rpact base plot as described above
createdPlot <- createdPlot +
    ggtitle("Stage level plot of the adaptive and group sequential design") +
    xlim(0, 1) + ylim(0, dGS$alpha + 0.005) +
    geom_point(aes(x = 1, y = dGS$alpha), colour = "red", size = 3) +
    annotate(
        geom = "text", label = "Final significance level of single-stage design",
        color = "red", x = dGS$informationRates[3], y = dGS$alpha, vjust = -2, hjust = 1
    ) +
    geom_hline(yintercept = dGS$stageLevels, linetype = "dashed", color = "grey") +
    geom_point(aes_(x = dGS$informationRates[1], y = dGS$stageLevels[1]),
        color = "blue", size = 3
    ) +
    geom_point(aes_(x = dGS$informationRates[2], y = dGS$stageLevels[2]),
        color = "green", size = 3
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[1], 5),
        x = dGS$informationRates[1], y = dGS$stageLevels[1], vjust = -2
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[2], 5),
        x = dGS$informationRates[2], y = dGS$stageLevels[2], vjust = -3
    ) +
    annotate(
        geom = "text", label = round(dGS$stageLevels[3], 5),
        x = dGS$informationRates[3], y = dGS$stageLevels[3], vjust = 4
    )

# add additional annotations
createdPlot <- createdPlot +
    annotate("text",
        x = 0.55, y = 0.016,
        label = paste("Group sequential design:", dGSalpha), hjust = 1
    ) +
    annotate("text",
        x = 0.55, y = 0.014,
        label = paste("Adaptive inverse normal design:", dINalpha), hjust = 1
    ) +
    annotate("text",
        x = 0.05, y = 0.010,
        label = paste("Based on", dGSsim$maxNumberOfIterations, "simulations."), hjust = 0
    ) +
    annotate("text",
        x = 0.05, y = 0.020,
        label = "Simulated overall Type I error rate with sample size recalculation:", hjust = 0
    )

# generate and show plot
createdPlot

Summary

It was shown that rpact “base” charts can be modified with standard ggplot2 commands. The implementation is very easy and intuitive as it follows the normal ggplot2 syntax. The authors hope that this information is helpful for everyone who wants to further modify graphical outputs from rpact.

References

  1. Gernot Wassmer and Werner Brannath, Group Sequential and Confirmatory Adaptive Designs in Clinical Trials, Springer 2016, ISBN 978-3319325606

  2. R-Studio, Data Visualization with ggplot2 - Cheat Sheet, version 2.1, 2016, https://www.rstudio.com/wp-content/uploads/2016/11/ggplot2-cheatsheet-2.1.pdf

Disclaimer

Yannic Schmidt, Stefan Englert and Martina Kron are employees of AbbVie Inc. Gernot Wassmer and Friedrich Pahlke are employees of RPACT (R Programming for Adaptive Clinical Trials). All opinions and information in this presentation are from the authors and do not necessarily reflect the views of their employers.


System: rpact 3.5.1, R version 4.3.2 (2023-10-31 ucrt), platform: x86_64-w64-mingw32

To cite R in publications use:

R Core Team (2023). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria. https://www.R-project.org/. To cite package ‘rpact’ in publications use:

Wassmer G, Pahlke F (2024). rpact: Confirmatory Adaptive Clinical Trial Design and Analysis. R package version 3.5.1, https://www.rpact.com, https://github.com/rpact-com/rpact, https://rpact-com.github.io/rpact/, https://www.rpact.org.