mtdesign
Two-Stage Designs Optimal Under the Alternative Hypothesis for Phase II [Cancer] Clinical Trials
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.6%) to scientific vocabulary
Keywords from Contributors
interpretability
standardization
animal
hack
autograder
report
Last synced: 11 months ago
·
JSON representation
Repository
Two-Stage Designs Optimal Under the Alternative Hypothesis for Phase II [Cancer] Clinical Trials
Basic Info
- Host: GitHub
- Owner: openpharma
- License: gpl-3.0
- Language: R
- Default Branch: main
- Homepage: https://openpharma.github.io/mtdesign
- Size: 6.39 MB
Statistics
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 5
- Releases: 2
Created almost 4 years ago
· Last pushed 11 months ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
bibliography: "mtdesign.bib"
---
```{r, include = FALSE}
# /usr/local/lib/R/site-library/BH/include/boost
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# mtdesign
[](https://CRAN.R-project.org/package=mtdesign)
[](https://github.com/openpharma/mtdesign/blob/_xml_coverage_reports/data/main/coverage.xml)
## Introduction
The package `mtdesign` provides implementations of both Simon [-@SIMON] and Mander & Thompson [-@MANDER]. Other implementations of Simon's methods are available - for example, the `ph2simon` function in the `clinfun` package [@CLINFUN], but these do not provide easy access to non-optimal solutions in the way that `mtdesign` does. I am not aware of any other R-based implementations of Mander & Thompson's extension to Simon.
## Installation
Once available on CRAN, you can install `mtdesign` in the usual way:
`install.packages("mtdesign")`
You can install the development version of `mtdesign` from [GitHub](https://github.com/openpharma/mtdesign) with:
`devtools::install_github("openpharma/mtdesign")`
## Set up vignette environment
```{r}
# By policy, on CRAN, use only two cores, no matter how many are available.
if (requireNamespace("parallel", quietly = TRUE)) {
maxCores <- parallel::detectCores()
maxCores <- ifelse(identical(Sys.getenv("NOT_CRAN"), "true"), maxCores, min(maxCores, 2))
} else {
maxCores <- 1
}
```
## Example
Suppose that treatments with a response rate of less than 5% are of no interest but those with a response rate of at least 25% are worthy of further development. A Simon's 2-stage design to seek an efficacy signal with a significance level of 5% and a power of 80% is required.
```{r example}
library(mtdesign)
library(knitr)
library(dplyr)
simonDesign <- obtainDesign(p0 = 0.05, p1 = 0.25, alpha = 0.05, beta = 0.2, mander = FALSE, parallel = FALSE)
simonDesign %>%
select(-Alpha, -Beta, -p0, -p1, -PETAlt, -AveSizeAlt) %>%
kable(digits = c(0, 0, 0, 0, 3, 3, 2, 1, NA))
```
The table shows that the optimal design for these requirements is 0/9 2/17. The expected sample size is 12.0 and the probability of early termination is 63%. The significance level actually achieved is 4.7% and the power level achieved is 100% - 18.8% = 81.2%.
The power curves for both designs are easily plotted.
```{r}
powerPlot(simonDesign)
```
Obtaining the equivalent Mander & Thompson designs requires only a small change to the calls.
```{r}
manderDesign <- obtainDesign(
p0 = 0.05,
p1 = 0.25,
alpha = 0.05,
beta = 0.2,
cores = maxCores
)
manderDesign %>%
select(-Alpha, -Beta, -p0, -p1) %>%
kable(digits = c(0, 0, 0, 0, 3, 3, 2, 2, 2, 1, NA))
powerPlot(manderDesign)
```
### Constrained designs
Suppose a trial, for whatever reason, is restricted to using 8 participants in each stage. As shown above, the optimal Simon's two stage design is 0/9 2/17. That's close to n~1~ = 8, n = 16. Is there a (slightly) sub-optimal design that has n~1~ = 8, n = 16?
```{r}
x <- createGrid(p0 = 0.05, p1 = 0.25, alpha = 0.05, beta = 0.2, mander = FALSE)
y <- x %>% filter(nStage1 == 8, nTotal == 16)
z <- y %>% obtainDesign(cores = maxCores)
if (nrow(z) == 0) {
print("No acceptable designs were found.")
} else {
select(-Alpha, -Beta, -p0, -p1, -PETAlt, -AveSizeAlt) %>%
z() %>%
select(-Alpha, -Beta, -p0, -p1, -PETAlt, -AveSizeAlt) %>%
kable(digits = c(0, 0, 0, 0, 3, 3, 2, 1, NA))
}
```
No, there isn't. How close can we get?
```{r}
z1 <- y %>% augmentGrid()
bestSize <- z1 %>%
filter(Type1 < Alpha) %>%
slice_min(Type2)
bestSize %>%
select(-Alpha, -Beta, -p0, -p1, -PETAlt, -AveSizeAlt) %>%
kable(
caption = "Best sub-optimal design with required significance level",
digits = c(0, 0, 0, 0, 3, 3, 2, 1, NA)
)
bestPower <- z1 %>%
filter(Type2 < Beta) %>%
slice_min(Type1)
bestPower %>%
select(-Alpha, -Beta, -p0, -p1, -PETAlt, -AveSizeAlt) %>%
kable(
caption = "Best sub-optimal design with required power",
digits = c(0, 0, 0, 0, 3, 3, 2, 1, NA)
)
```
So the choice lies between a design which achieves the required significance level but has a power of only 77.1% or one which has the required power but which has a significance level of 15.1%. Both designs accept the null hypothesis when no responders are seen in the first group of eight participants. They differ in the critical value at the end of stage 2: 1 to maintain the power, 2 to maintain the significance level.
The power curve for each of these designs can be compared with that for the globally optimal design.
```{r}
plotData1 <- simonDesign %>%
filter(Criterion == "optimal") %>%
bind_rows(list(bestSize, bestPower))
powerPlot(plotData1)
```
## Package structure
The `mtdesign` package consists of three main functions:
* `createGrid` creates the grid (of nStage1, rFutility, nTotal and rTotal for Simon's design or nStage1, rFutility, rSuccess, nTotal and rTotal for a Mander & Thompson design) over which the brute force search for the required design(s) is conducted
* `augmentGrid`takes a grid created by `createGrid` and adds columns for probability of early termination, Type 1 error, Type 2 error and expected sample size to it.
* `obtainDesign` takes an augmented grid and identifies the optimal and minimax designs
## Error and warning messages and logging
The `mtdesign` package supports logging via the `futile.logger` package [@LOGGER]. Most functions simply report Entry and Exit at the `DEBUG` level.
The `augmentGrid` function reports steps of the parallelisation process at the `TRACE` level.
## Parallelisation
There is no known closed form solution to obtaining solutions to either Simon's original equations nor Mander & Thompson's extensions. The `mtdesign` package uses a brute force approach to evaluate the operating characteristics of all reasonable potential designs. The grids can be quickly become large, particularly for Mander & Thompson designs. For example, `createGrid(0.2, 0.4, alpha=0.1, beta=0.1)` creates a grid of almost 11 million candidate designs. `mtdesign` uses paralellisation to attempt to speed up the evaluation of candidate designs.
The `augmentGrid` function allows users some control over the parallelisation process:
* The `parallel` parameter defaults to `TRUE` and defines whether or not paralellisation is to be used.
* The `cores` parameter specifies how many cores are to be used. The default value, `NA` tells `mtdesign` to use all available (as defined by `parallel::detectCores()`), cores.
* The `minChunkSize` determines the smallest grid of candidate designs that will trigger paralellisation. The default value is `100000`.
The `parallel` package is required for parallelisation. If parallelisation is both needed (ie the grid size exceeds `minChunkSize`) and requested but the `parallel` package has not been installed, an error message is thrown and augmentation of the grid stops. If paralellisation is not requested and the grid contains one million or more rows, a warning is produced.
## Troubleshooting
If, when installing or using the `mtdesign` package, you get an error regarding a syntax error in an`.hpp` file, similar to the following
```R
.../BH/include/boost/math/tools/fraction.hpp:84:48: error: ‘long double’ is not a class, struct, or union type using value_type = typename T::value_type;
```
the issue is most likely a mismatch between the g++ compiler being used and the headers supplied by the `BH` package. There are only two solutions that I know of:
* Upgrade g++
* Downgrade the version of the `BH` package you are using. The appropriate package version depends on the version of the g++ compiler you are using.
## References
Owner
- Name: openpharma
- Login: openpharma
- Kind: organization
- Website: openpharma.github.io
- Repositories: 30
- Profile: https://github.com/openpharma
Further precompetitive collaboration in life sciences
GitHub Events
Total
- Create event: 7
- Release event: 1
- Issues event: 10
- Watch event: 1
- Delete event: 3
- Issue comment event: 7
- Member event: 1
- Push event: 63
- Pull request review event: 1
- Pull request event: 5
Last Year
- Create event: 7
- Release event: 1
- Issues event: 10
- Watch event: 1
- Delete event: 3
- Issue comment event: 7
- Member event: 1
- Push event: 63
- Pull request review event: 1
- Pull request event: 5
Committers
Last synced: about 1 year ago
Top Committers
| Name | Commits | |
|---|---|---|
| John Kirkpatrick | 5****e | 18 |
| Puzzled-Face | j****k@r****m | 8 |
| Dinakar | 2****y | 2 |
| github-actions | 4****] | 2 |
Committer Domains (Top 20 + Academic)
roche.com: 1
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 8
- Total pull requests: 5
- Average time to close issues: 6 months
- Average time to close pull requests: 4 months
- Total issue authors: 6
- Total pull request authors: 3
- Average comments per issue: 0.5
- Average comments per pull request: 1.6
- Merged pull requests: 5
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 4
- Pull requests: 1
- Average time to close issues: 1 day
- Average time to close pull requests: 5 minutes
- Issue authors: 4
- Pull request authors: 1
- Average comments per issue: 0.25
- Average comments per pull request: 2.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- PuzzledFace (4)
- teunbrand (1)
- Puzzled-Face (1)
- daroczig (1)
- DanChaltiel (1)
- krlmlr (1)
Pull Request Authors
- PuzzledFace (5)
- cicdguy (2)
- Puzzled-Face (1)
Top Labels
Issue Labels
enhancement (2)
bug (1)
Pull Request Labels
enhancement (1)
Packages
- Total packages: 1
-
Total downloads:
- cran 487 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 3
- Total maintainers: 1
cran.r-project.org: mtdesign
Mander and Thompson Designs
- Homepage: https://github.com/openpharma/mtdesign
- Documentation: http://cran.r-project.org/web/packages/mtdesign/mtdesign.pdf
- License: GPL (≥ 3)
-
Latest release: 0.1.3
published 11 months ago
Rankings
Forks count: 28.8%
Dependent packages count: 29.8%
Stargazers count: 31.7%
Dependent repos count: 35.5%
Average: 41.5%
Downloads: 81.8%
Maintainers (1)
Last synced:
11 months ago
Dependencies
DESCRIPTION
cran
- Rcpp * imports
- dplyr * imports
- ggplot2 * imports
- logger * imports
- magrittr * imports
- methods * imports
- rlang * imports
- tibble * imports
- tidyr * imports
- covr * suggests
- parallel * suggests
- testthat >= 3.0.0 suggests
.github/workflows/check.yaml
actions
.github/workflows/docs.yaml
actions
.github/workflows/release.yaml
actions
.github/workflows/rhub.yaml
actions
- r-hub/actions/checkout v1 composite
- r-hub/actions/platform-info v1 composite
- r-hub/actions/run-check v1 composite
- r-hub/actions/setup v1 composite
- r-hub/actions/setup-deps v1 composite
- r-hub/actions/setup-r v1 composite