Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Doc/library/statistics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ However, for reading convenience, most of the examples show sorted sequences.

The *data* can be any iterable containing sample data. For meaningful
results, the number of data points in *data* should be larger than *n*.
Raises :exc:`StatisticsError` if there are not at least two data points.
Raises :exc:`StatisticsError` if there is not at least one data point.

The cut points are linearly interpolated from the
two nearest data points. For example, if a cut point falls one-third
Expand Down Expand Up @@ -625,6 +625,11 @@ However, for reading convenience, most of the examples show sorted sequences.

.. versionadded:: 3.8

.. versionchanged:: 3.13
No longer raises an exception for an input with only a single data point.
This allows quantile estimates to be built up one sample point
at a time becoming gradually more refined with each new data point.

.. function:: covariance(x, y, /)

Return the sample covariance of two inputs *x* and *y*. Covariance
Expand Down
4 changes: 3 additions & 1 deletion Lib/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,9 @@ def quantiles(data, *, n=4, method='exclusive'):
data = sorted(data)
ld = len(data)
if ld < 2:
raise StatisticsError('must have at least two data points')
if ld == 1:
return data * (n - 1)
raise StatisticsError('must have at least one data point')
if method == 'inclusive':
m = ld - 1
result = []
Expand Down
7 changes: 6 additions & 1 deletion Lib/test/test_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2454,6 +2454,11 @@ def f(x):
data = random.choices(range(100), k=k)
q1, q2, q3 = quantiles(data, method='inclusive')
self.assertEqual(q2, statistics.median(data))
# Base case with a single data point: When estimating quantiles from
# a sample, we want to be able to add one sample point at a time,
# getting increasingly better estimates.
self.assertEqual(quantiles([10], n=4), [10.0, 10.0, 10.0])
self.assertEqual(quantiles([10], n=4, method='exclusive'), [10.0, 10.0, 10.0])

def test_equal_inputs(self):
quantiles = statistics.quantiles
Expand Down Expand Up @@ -2504,7 +2509,7 @@ def test_error_cases(self):
with self.assertRaises(ValueError):
quantiles([10, 20, 30], method='X') # method is unknown
with self.assertRaises(StatisticsError):
quantiles([10], n=4) # not enough data points
quantiles([], n=4) # not enough data points
with self.assertRaises(TypeError):
quantiles([10, None, 30], n=4) # data is non-numeric

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix base case handling in statistics.quantiles. Now allows a single data
point.