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.
Both pandas
as pd
and numpy
as np
are loaded and amir_deals
is available.
Este exercício faz parte do curso
Introduction to Statistics in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Set random seed
____
# Sample 5 deals without replacement
sample_without_replacement = ____
print(sample_without_replacement)