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,quartile] - Quartiles of a Statistical List
Calling Sequence
stats[describe, quartile[which]](data, gap)
describe[quartile[which]](data, gap)
Parameters
data
-
statistical list
which
quartile required
gap
(optional, default=false) The common size of gaps between classes.
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function quartile of the subpackage stats[describe, ...] finds the item in data that corresponds to the quartile specified by which. If the requested quartile falls between entries, it is interpolated.
The values given by quartile can be thought of as 3 values that partition the data set, once sorted, into 4 data sets of equal weight.
Half of the difference between the third quartile and the first quartile is a measure of the dispersion of the data. This quantity is known as the semi-interquartile range and the quartile deviation. Refer to describe[standarddeviation] for more information about measures of the dispersion of data.
Missing data are ignored.
For information about the parameter gap, see describe[gaps].
The data must be numeric.
The command with(stats[describe],quartile) allows the use of the abbreviated form of this command.
Examples
To compute the quartiles, all at once
The semi-interquartile range is given by
See Also
describe(deprecated)[decile], describe(deprecated)[gaps], describe(deprecated)[median], describe(deprecated)[percentile], describe(deprecated)[quantile], describe(deprecated)[range], describe(deprecated)[standarddeviation], Statistics, Statistics[Quartile]
Download Help Document