optiallo | R Documentation |
Allocates a sample of size n
using Neyman optimal allocation in Stratified Simple Random Sampling.
optiallo(n, x, stratum = NULL, ...)
n |
a positive integer indicating the desired sample size. |
x |
a positive numeric vector giving the values of the auxiliary variable. |
stratum |
a vector indicating the stratum to which every unit belongs (see ‘Details’). |
... |
other arguments passed to |
Allocates a sample of size n
using Neyman optimal allocation in Stratified Simple Random Sampling.
If stratum==NULL
, the stratification is generated via stratify
. Then at least the number of strata should be passed to stratify
using the argument H
.
A list with two elements:
stratum |
a vector indicating the stratum to which each element belongs. |
nh |
a vector indicating the sample size of the strata to which each element belongs. |
stratify
for defining the stratification using the cum-sqrt-rule.
x<- 1 + sort( rgamma(100, shape=4/9, scale=108) )
st1<- stratify(x,H=6)
optiallo(n=30,x,stratum=st1)
optiallo(n=30,x,H=6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.