Stratified Sampling
Stratified Sampling is commonly used probability method that is superior to random sampling because it reduces sampling error. A stratum is a subset of the population that share at least one common characteristic. Examples of strata might be males and females, or managers and non-managers.
The researcher first identifies the relevant strata and their actual representation in the population. Random sampling is then used to select a sufficient number of subjects from each stratum. “Sufficient” refers to a sample size large enough for us to be reasonably confident that the stratum represents the population. Stratified sampling is often used when one or more of the strata in the population have a low incidence relative to the other strata.
The function sample.strat()
in the animation package shows you
the stratified sampling. Each rectangle stands for a stratum, and the simple random sampling
without replacement is performed within each stratum. The points being sampled are marked out (by
red circles by default).
library(animation)
sample.strat(col = c("bisque", "white"))