Description Usage Arguments Details Author(s) References See Also Examples
This function returns the minimum sample size required for estimating a single mean subjec to predefined errors.
1 2 3 4 5 6 7 8 9 10 |
N |
The population size. |
mu |
The value of the estimated mean of a variable of interest. |
sigma |
The value of the estimated standard deviation of a variable of interest. |
DEFF |
The design effect of the sample design. By default |
conf |
The statistical confidence. By default conf = 0.95. By default |
error |
The type of error you want to minimize. |
delta |
The magnitude of the error you want to minimize. |
plot |
Optionally plot the errors (cve and margin of error) against the sample size. |
Note that the minimun sample size to achieve a relative margin of error \varepsilon is defined by:
n = \frac{n_0}{1+\frac{n_0}{N}}
Where
n_0=\frac{z^2_{1-\frac{alpha}{2}}S^2}{\varepsilon^2 μ^2}
and
S^2=σ^2 DEFF
Also note that the minimun sample size to achieve a coefficient of variation cve is defined by:
n = \frac{S^2}{\bar{y}_U^2 cve^2 + \frac{S^2}{N}}
Hugo Andres Gutierrez Rojas <hagutierrezro at gmail.com>
Gutierrez, H. A. (2009), Estrategias de muestreo: Diseno de encuestas y estimacion de parametros. Editorial Universidad Santo Tomas
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ss4m(N=10000, mu=10, sigma=2, DEFF = 2, error = "cve", delta = 0.03, plot=TRUE)
ss4m(N=10000, mu=10, sigma=2, DEFF = 2, error = "me", delta = 1, plot=TRUE)
ss4m(N=10000, mu=10, sigma=2, DEFF = 2, error = "rme", delta = 0.03, plot=TRUE)
##########################
# Example with Lucy data #
##########################
data(Lucy)
attach(Lucy)
N <- nrow(Lucy)
mu <- mean(Income)
sigma <- sd(Income)
# The minimum sample size for simple random sampling
ss4m(N, mu, sigma, DEFF=1, conf=0.95, error = "rme", delta = 0.03, plot=TRUE)
# The minimum sample size for a complex sampling design
ss4m(N, mu, sigma, DEFF=1, conf=0.95, error = "me", delta = 5, plot=TRUE)
# The minimum sample size for a complex sampling design
ss4m(N, mu, sigma, DEFF=3.45, conf=0.95, error = "rme", delta = 0.03, plot=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.