Yamane95 | R Documentation |
Computes sample size for known Population at 95 percent Level of Confidence preferred for social science studies
Yamane95(x)
x |
Population to be used for computation of Sample |
Returns a vector which is the computed sample for the given population rounded up with ceiling function.
Paolo G. Hilado
Yamane, T. (1967). Statistics, An Introductory Analysis, 2nd Ed., New York: Harper and Row.
Yamane95(700) [1] 255 ## The function is currently defined as function (x) { y <- x/(1 + x*0.0025) z <- ceiling(y) print(z) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.