R/CochranMOD.R

Defines functions CochranMod

Documented in CochranMod

# This file is part of the RSamplingz package with License GPL-3.0-or-later
CochranMod <- function(no, N){
  x <- no -1
  y <- x / N
  z <- 1 + y
  n <- no / z
  n <- ceiling(n)
  print(n)
}
Dcroix/RSamplingz documentation built on April 30, 2022, 8:33 a.m.