Get startedGet started for free

Modeling time between leads

To further evaluate Amir's performance, you want to know how much time it takes him to respond to a lead after he opens it. On average, he responds to 1 request every 2.5 hours. In this exercise, you'll calculate probabilities of different amounts of time passing between Amir receiving a lead and sending a response.

This exercise is part of the course

Introduction to Statistics in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Import expon from scipy.stats
____

# Print probability response takes < 1 hour
print(____(____, scale=____))
Edit and Run Code