Skip to content

Commit fe4d2dc

Browse files
Merge pull request #600 from Merck/599-cran-release-v117
CRAN release v1.1.7
2 parents b8a534f + 53f674a commit fe4d2dc

File tree

4 files changed

+31
-16
lines changed

4 files changed

+31
-16
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: gsDesign2
22
Title: Group Sequential Design with Non-Constant Effect
3-
Version: 1.1.6.1
3+
Version: 1.1.7
44
Authors@R: c(
55
person("Keaven", "Anderson", email = "[email protected]", role = c("aut")),
66
person("Yujie", "Zhao", email = "[email protected]", role = c("aut", "cre")),

NEWS.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
# gsDesign2 1.1.7
22

3-
## User interface improvements
3+
## Documentation
4+
5+
- The vignette discussing the futility boundary design is finalized (#583, thanks to @LittleBeannie)
6+
- An example calculating expected events for multiple strata is added (#597, thanks to @LittleBeannie)
7+
- The documentation of common parameters is unified by `@inheritparams` (#598, thanks to @LittleBeannie)
8+
- A contributing guide with overview of package architecture is added (#596, thanks to @jdblischak)
9+
10+
## Programming improvements
411

12+
- The S3 classes are re-factored (#584, thanks to @jdblischak)
13+
- The input parameters are not displayed when printing the objects (#586, thanks to @jdblischak)
514
- `text_summary()` supports design objects with spending functions specified as character strings (#587, thanks to @yihui).
15+
- The attribute assignment `uninteger_is_from` is fixed in `to_integer()` (#591, thanks to @jdblischak)
16+
- `text_summary()` is updated to support fixed designs from `gs_design_ahr()` (#592, thanks to @jdblischak)
617

718
# gsDesign2 1.1.6
819

R/expected_event.R

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,15 @@
109109
#' )
110110
#'
111111
#' # Single time period example, multiple strata
112-
#' enroll_rate <- define_enroll_rate(stratum = rep(c("Biomarker-positive", "Biomarker-negative"), each = 4),
113-
#' duration = c(2, 2, 2, 6, 2, 2, 2, 6),
114-
#' rate = c(1:4, 1:4))
115-
#' failure_rate <- define_fail_rate(stratum = rep(c("Biomarker-positive", "Biomarker-negative"), each = 2),
116-
#' duration = c(3, 100, 3, 100),
117-
#' fail_rate = log(2) / c(8, 12, 8, 10),
118-
#' dropout_rate = 0.001)
112+
#' enroll_rate <- define_enroll_rate(
113+
#' stratum = rep(c("Biomarker-positive", "Biomarker-negative"), each = 4),
114+
#' duration = c(2, 2, 2, 6, 2, 2, 2, 6),
115+
#' rate = c(1:4, 1:4))
116+
#' failure_rate <- define_fail_rate(
117+
#' stratum = rep(c("Biomarker-positive", "Biomarker-negative"), each = 2),
118+
#' duration = c(3, 100, 3, 100),
119+
#' fail_rate = log(2) / c(8, 12, 8, 10),
120+
#' dropout_rate = 0.001)
119121
#' # Number of expected events by stratum
120122
#' sapply(c("Biomarker-positive", "Biomarker-negative"),
121123
#' function(ss){

man/expected_event.Rd

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)