sample.size.mean {samplingbook} | R Documentation |
Sample Size Calculation for Mean Estimation
Description
The function sample.size.mean
returns the sample size needed for mean estimations either with or without consideration of finite population correction.
Usage
sample.size.mean(e, S, N = Inf, level = 0.95)
Arguments
e |
positive number specifying the precision which is half width of confidence interval |
S |
standard deviation in population |
N |
positive integer for population size. Default is |
level |
coverage probability for confidence intervals. Default is |
Value
The function sample.size.mean
returns a value, which is a list consisting of the components
call |
is a list of call components: |
n |
estimate of sample size |
Author(s)
Juliane Manitz
References
Kauermann, Goeran/Kuechenhoff, Helmut (2010): Stichproben. Methoden und praktische Umsetzung mit R. Springer.
See Also
Examples
# sample size for precision e=4
sample.size.mean(e=4,S=10,N=300)
# sample size for precision e=1
sample.size.mean(e=1,S=10,N=300)