Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
stats[describe,quantile] - Quantiles of a Statistical List
Calling Sequence
stats[describe, quantile[which](data, gap)
describe[quantile[which, offset]](data, gap)
Parameters
data
-
statistical list
which
quantile required, a number between 0 and 1
offset
(optional, default = 0 ) offset added to the calculated position
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 quantile function of the subpackage stats[describe, ...] finds the item in data that corresponds to the quantile specified by which. If the requested quantile falls between entries, it is interpolated.
The quantile can be describe as follows. Given a fraction `r` between 0 and 1. Sort the data. The r-th-quantile is a value that separates the data into 2 parts. One having the portion `r` of the sorted data which is less than the quantile value, the other have the 1-`r` portion of the data which is greater than the quantile value.
The precise position is computed as followed: r*n+offset, where n is the total weight of the data list.
The quantile generalizes the concept of median, quartile, percentile etc.
To obtain the median, one has to use an offset of 1/2. This is because the median of two numbers is situated midway between these numbers.
NOTE: the quantile and the quartile have similar spelling.
Missing data are ignored.
For information about the parameter gap, see describe[gaps].
The data must be numeric.
The command with(stats[describe],quantile) allows the use of the abbreviated form of this command.
Examples
See Also
describe(deprecated)[decile], describe(deprecated)[gaps], describe(deprecated)[median], describe(deprecated)[percentile], describe(deprecated)[quartile], describe(deprecated)[range], Statistics, Statistics[Quantile]
Download Help Document