samp | R Documentation |
Wrapper for stratified simple random sampling (SRS) and probability-proportional-to-size (PPS) sampling using permanent random numbers. Can also be used for non-stratified sampling using a dummy stratum taking the same value for each object.
samp(method, frame, ...)
method |
|
frame |
Data frame (or data.table or tibble) containing the elements to sample from. |
... |
Further method-specific arguments. |
A copy of the input data frame together with the boolean variable
sampled
, as well as the numeric variables lambda
and Q
when pps is used.
prnsamplr, srs, pps, transformprn, ExampleData
dfOut <- samp(
method = pps,
frame = ExampleData,
nsamp = ~nsample,
stratid = ~stratum,
prn = ~rands,
size = ~sizeM
)
dfOut <- samp(
method = srs,
frame = ExampleData,
nsamp = ~nsample,
stratid = ~stratum,
prn = ~rands
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.