R/Cochran.R

Defines functions Cochran

Documented in Cochran

# This file is part of the RSamplingz package with License GPL-3.0-or-later
Cochran <- function(z,p,e){
  q <- 1 - p
  x <- z*z
  y <- x*p*q
  res <- y /(e*e)
  res <- ceiling(res)
  print(res)
}
Dcroix/RSamplingz documentation built on April 30, 2022, 8:33 a.m.