R/optimal_multiple_generic.R

Defines functions optimal_multiple_generic

Documented in optimal_multiple_generic

#' Generic function for optimizing drug development programs with multiple endpoints
#' 
#' This function is only used for documentation generation.
#' 
#' @name optimal_multiple_generic
#' @keywords internal
#' 
#' @param rho correlation between the two endpoints
#' @param alpha one-sided significance level/family-wise error rate
#' @param n2min minimal total sample size in phase II, must be divisible by 3
#' @param n2max maximal total sample size in phase II, must be divisible by 3
#' @param stepn2 stepsize for the optimization over n2, must be divisible by 3
#' @param fixed assumed fixed treatment effect 
#' 
#' @return No return value

optimal_multiple_generic <- function(rho, alpha, n2min, n2max, stepn2, fixed){
  # This function is only used for documentation.
  # Hence, it contains no code.
}

Try the drugdevelopR package in your browser

Any scripts or data that you put into this service are public.

drugdevelopR documentation built on June 22, 2024, 12:27 p.m.