def median_grouped(text):
"""
Finds the grouped median of a space-separated list of numbers.
Calculates the median of grouped continuous data, calculated as the 50th percentile, using interpolation.
Example::
/median grouped 33 54 43 65 43 62
"""
return format_output(statistics.median_grouped(parse_numeric_list(text)))
评论列表
文章目录