Returns a vector (with elements 0 and 1) of size N, the population size.
Each element k of this vector indicates the status of unit k
(1, unit k is selected in the sample; 0, otherwise).
The value eps is used to control lambda (lambda>eps & lambda < 1-eps).
Arguments
lambda
vector of working inclusion probabilities or target ones.
type
the type of order sampling (pareto, uniform, exponential).
eps
control value, by default equal to 1e-6.
References
Rosén, B. (1997), Asymptotic theory for order sampling, Journal of Statistical Planning and Inference,
62:135-158.
Rosén, B. (1997), On sampling with probability proportional to size, Journal of Statistical Planning and Inference,
62:159-191.
#define the working inclusion probabilitieslambda<-c(0.2,0.7,0.8,0.5,0.4,0.4)
#draw a Pareto samples<-UPopips(lambda, type="pareto")
#the sample iswhich(s==1)