Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
stats[describe,median] - Median of a Statistical List
Calling Sequence
stats[describe, median](data, gap)
describe[median](data, gap)
Parameters
data
-
statistical list
gap
(optional) The common size of gaps between classes.
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function median of the subpackage stats[describe, ...] finds the item in data that correspond to the median.
The median of a sorted list of numbers is either the middle value or the arithmetic mean of the two middle values. If the requested median falls between entries, it is interpolated.
The median is a measure of central tendency. The description for the mean provides more information about such measures. The median is used to find a typical value of the given data when the extreme values are not representative of the rest of the data. It corresponds to the 50th percentile of the data.
Missing data are ignored.
For information about the parameter gap, see describe[gaps].
The data must be numeric.
The command with(stats[describe],median) allows the use of the abbreviated form of this command.
Examples
The median of the numbers 1,2,3,4,250 is
Note that this value is more typical of this particular data than the mean
For an even number of data items, interpolation is used:
See Also
describe(deprecated)[decile], describe(deprecated)[mean], describe(deprecated)[percentile], describe(deprecated)[quantile], describe(deprecated)[quartile], describe(deprecated)[range], Statistics, Statistics[Median], stats(deprecated)[data]
Download Help Document