ComeçarComece de graça

Equal counts stratified sampling

If one subgroup is larger than another subgroup in the population, but you don't want to reflect that difference in your analysis, then you can use equal counts stratified sampling to generate samples where each subgroup has the same amount of data. For example, if you are analyzing blood types, O is the most common blood type worldwide, but you may wish to have equal amounts of O, A, B, and AB in your sample.

attrition_pop is available; dplyr is loaded.

Este exercício faz parte do curso

Sampling in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Use equal counts stratified sampling to get 30 employees from each Education group
attrition_eq <- ___




# See the results
attrition_eq
Editar e executar o código