Simulating wait times
To give Amir a better idea of how long he'll have to wait, you'll simulate Amir waiting 1000 times and create a histogram to show him what he should expect. Recall from the last exercise that his minimum wait time is 0 minutes and his maximum wait time is 30 minutes.
As usual, pandas
as pd
, numpy
as np
, and matplotlib.pyplot
as plt
are loaded.
Cet exercice fait partie du cours
Introduction to Statistics in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Set random seed to 334
____