We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7035429 commit 79d537cCopy full SHA for 79d537c
R/gsMethods.R
@@ -384,7 +384,8 @@ gsBoundSummary0 <- function(
384
} else {
385
Futility <- NULL
386
}
387
- pp <- data.frame(Efficacy, Futility, i = 1:(x$k - 1))
+ # cbind() required here to drop Futility column when it is NULL
388
+ pp <- data.frame(cbind(Efficacy, Futility, i = 1:(x$k - 1)))
389
pp$Value <- "PP"
390
391
# start a frame for other statistics
0 commit comments