R/max_samp.R

Defines functions max_samp

Documented in max_samp

#' Returns default maximum sample size to end power_vs_n_plot().
#'
#' @param min_samp The starting sample size of the plot.
#'
#' @return A default maximum sample size to end power_vs_n_plot().
#' @export
#'
#' @examples max_samp(100)
max_samp <- function(min_samp){
  return(min_samp + 1000)
}

Try the MRTSampleSizeBinary package in your browser

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

MRTSampleSizeBinary documentation built on May 1, 2022, 5:08 p.m.