diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-10-28 03:01:02 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-10-28 03:01:02 (GMT) |
commit | 32dcf40af0be40d2c8db08a76bb4a878bf6718d0 (patch) | |
tree | 365d1f2681d8c1a5a7db2f54e673b6f5ed091fad /Lib/statistics.py | |
parent | b1f1c5ea35816c6010be5be654342186e221739f (diff) | |
parent | df2660e430a416eb833123d2cb51647e5dcdf939 (diff) | |
download | cpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.zip cpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.tar.gz cpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.tar.bz2 |
Issue #25494: Merge with 3.4
Diffstat (limited to 'Lib/statistics.py')
-rw-r--r-- | Lib/statistics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py index 3972ed2..9203cf1 100644 --- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -360,7 +360,7 @@ def median_high(data): def median_grouped(data, interval=1): - """"Return the 50th percentile (median) of grouped continuous data. + """Return the 50th percentile (median) of grouped continuous data. >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5]) 3.7 |