# 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.