stratsample | R Documentation |
This function takes a stratified sample without replacement from a data set.
stratsample(strata, counts)
strata |
Vector of stratum identifiers; will be coerced to character |
counts |
named vector of stratum sample sizes, with names corresponding to the values of |
vector of indices into strata
giving the sample
sample
The "sampling" package has many more sampling algorithms.
data(api)
s<-stratsample(apipop$stype, c("E"=5,"H"=4,"M"=2))
table(apipop$stype[s])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.