Skip to content

Median

The middle value of the collection once sorted.

Wolfram LanguageMedian
Median(collection)the middle value of the collection once sorted.

Domain: Collections

Details
  • For an odd-length collection, the median is the middle element of Sort's result; for even length, it's the average of the two middle elements.
  • Much less sensitive to outliers than Mean — a single extreme value barely moves it.
  • compute-engine's Median requires a flat list of numbers.
  • See Mode for the most frequent value.

Examples

See also: Mean, Mode