Searched refs:median_grouped (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | statistics.rst | 46 :func:`median_grouped` Median, or 50th percentile, of grouped data. 176 .. seealso:: :func:`median_low`, :func:`median_high`, :func:`median_grouped` 219 .. function:: median_grouped(data, interval=1) 227 >>> median_grouped([52, 52, 53, 54]) 238 >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5]) 246 >>> median_grouped([1, 3, 3, 5, 7], interval=1) 248 >>> median_grouped([1, 3, 3, 5, 7], interval=2) 256 Under some circumstances, :func:`median_grouped` may coerce data points to
|
/external/python/cpython3/Lib/ |
D | statistics.py | 428 def median_grouped(data, interval=1): function
|
/external/python/cpython3/Lib/test/ |
D | test_statistics.py | 1647 self.func = statistics.median_grouped
|