srswor1: Selection-rejection method

srswor1R Documentation

Selection-rejection method

Description

Draws a simple random sampling without replacement of size n using the selection-rejection method (equal probabilities, fixed sample size, without replacement).

Usage

srswor1(n,N)

Arguments

n

sample size.

N

population size.

Value

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).

References

Fan, C.T., Muller, M.E., Rezucha, I. (1962), Development of sampling plans by using sequential (item by item) selection techniques and digital computer, Journal of the American Statistical Association, 57, 387–402.

See Also

srswor

Examples

s=srswor1(3,10)
#the sample is
which(s==1)

sampling documentation built on Nov. 2, 2023, 6:26 p.m.

Related to srswor1 in sampling...