srs: Stratified simple random sampling

View source: R/srs.R

srsR Documentation

Stratified simple random sampling

Description

Stratified simple random sampling (SRS) using permanent random numbers. Can also be used for non-stratified SRS using a dummy stratum taking the same value for each object.

Usage

srs(df, stratid, nsamp, prn)

Arguments

df

Data frame containing the elements to sample from.

stratid

Variable in df containing the strata.

nsamp

Variable in df containing the sample sizes.

prn

Variable in df containing the permanent random numbers.

Value

Copy of the input data frame together with the boolean variable sampled.

See Also

prnsamplr, samp, pps, transformprn, ExampleData.

Examples

dfOut <- srs(df=ExampleData, 
             nsamp="nsample", 
             stratid="stratum", 
             prn="rands")

prnsamplr documentation built on March 31, 2023, 5:42 p.m.