Yamane99: Yamane Equation for Sampling 99

View source: R/Yamane99.R

Yamane99R Documentation

Yamane Equation for Sampling 99

Description

Computes sample size for known Population at 99 percent Level of Confidence preferred for studies on phenomenon with high risk

Usage

Yamane99(x)

Arguments

x

Population to be used for computation of Sample

Value

Returns a vector which is the computed sample for the given population rounded up with ceiling function.

Author(s)

Paolo G. Hilado

References

Yamane, T. (1967). Statistics, An Introductory Analysis, 2nd Ed., New York: Harper and Row.

Examples

Yamane99(700)
[1] 655
## The function is currently defined as
function (x)
{
  y <- x/(1 + x*0.0001)
  z <- ceiling(y)
  print(z)
}


Dcroix/RSamplingz documentation built on April 30, 2022, 8:33 a.m.