math.listMedian

From RPTools Wiki
Jump to navigation Jump to search

math.listMedian() Function

Introduced in version 1.7
Calculates the Median of the contents of a String List. The median value is is the value where half the numbers in the list are greater than or equal to it, and the other half are less than or equal to it. The median is calculated by sorting the list contents and picking the middle number if the number of elements is odd, or averaging the two in the middle if the number of elements is even. Only allows numeric elements - any non-numeric values will produce an error.

Usage

[h: result = math.listMedian(list)]
[h: result = math.listMedian(list, delim)]

Examples

[h: list1 = "3,6,2,2"]
[r: math.listMedian(list1)]
[h: list2 = "12#23#3#102#1"]
[r: math.listMedian(list2,"#")]

Returns:

 2.5
 12