Weighted sampling
Stratified sampling provides rules about the probability of picking rows from your dataset at the subgroup level. A generalization of this is weighted sampling, which lets you specify rules about the probability of picking rows at the row level. The probability of picking any given row is proportional to the weight value for that row.
attrition_pop
is available; dplyr
and ggplot2
are loaded.
Cet exercice fait partie du cours
Sampling in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Using attrition_pop, plot YearsAtCompany as a histogram with binwidth 1
___