Session Ready
Exercise

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.

Instructions 1/3
undefined XP
  • 1
  • 2
  • 3
  • Set the random seed to 24.
  • Take a sample of 5 deals without replacement and store them as sample_without_replacement.