Lines Matching refs:median
49 :func:`median` Median (middle value) of data.
50 :func:`median_low` Low median of data.
51 :func:`median_high` High median of data.
123 <https://en.wikipedia.org/wiki/Central_tendency>`_, see :func:`median`.
215 .. function:: median(data)
217 Return the median (middle value) of numeric data, using the common "mean of
221 The median is a robust measure of central location and is less affected by
227 >>> median([1, 3, 5])
230 When the number of data points is even, the median is interpolated by taking
235 >>> median([1, 3, 5, 7])
239 median may not be an actual data point.
247 Return the low median of numeric data. If *data* is empty,
250 The low median is always a member of the data set. When the number of data
261 Use the low median when your data are discrete and you prefer the median to
267 Return the high median of data. If *data* is empty, :exc:`StatisticsError`
270 The high median is always a member of the data set. When the number of data
281 Use the high median when your data are discrete and you prefer the median to
287 Return the median of grouped continuous data, calculated as the 50th
705 .. attribute:: median
707 A read-only property for the `median