Improve output summary in the examples and recipes section (GH-20285)

This commit is contained in:
Raymond Hettinger 2020-05-21 01:37:38 -07:00 committed by GitHub
parent 0f56263e62
commit e16d2f7c37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -494,7 +494,7 @@ Simulation of arrival times and service deliveries for a multiserver queue::
from heapq import heappush, heappop
from random import expovariate, gauss
from statistics import mean, median, stdev
from statistics import mean, quantiles
average_arrival_interval = 5.6
average_service_time = 15.0
@ -513,8 +513,8 @@ Simulation of arrival times and service deliveries for a multiserver queue::
service_completed = arrival_time + wait + service_duration
heappush(servers, service_completed)
print(f'Mean wait: {mean(waits):.1f}. Stdev wait: {stdev(waits):.1f}.')
print(f'Median wait: {median(waits):.1f}. Max wait: {max(waits):.1f}.')
print(f'Mean wait: {mean(waits):.1f} Max wait: {max(waits):.1f}')
print('Quartiles:', [round(q, 1) for q in quantiles(waits)])
.. seealso::