Sampling deals
In the previous exercise, you counted the deals Amir worked on. Now it's time to randomly pick five deals so that you can reach out to each customer and ask if they were satisfied with the service they received. You'll try doing this both with and without replacement.
Additionally, you want to make sure this is done randomly and that it can be reproduced in case you get asked how you chose the deals, so you'll need to set the random seed before sampling from the deals.
dplyr
is loaded and amir_deals
is available.
Questo esercizio fa parte del corso
Introduction to Statistics in R
Esercizio pratico interattivo
Prova questo esercizio completando il codice di esempio.
# Set random seed to 31
___
# Sample 5 deals without replacement
amir_deals %>%
___