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[statplots, scatterplot] - Quantile Plot
Calling Sequence
stats[statplots, scatterplot](data, format=quantile, ...)
statplots[scatterplot](data, format=quantile, ...)
scatterplot(data, format=quantile, ...)
Parameters
data
-
statistical list(s)
plotoptions
plot options
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function scatterplot with the format parameter format=quantile of the subpackage stats[statplots] generates either a quantile plot, or a quantile-quantile plot, depending on the number of statistical lists passed.
A quantile plot is generated when one statistical list is passed, ie. the command scatterplot(data1, format=quantile) is used. In this plot, each item in data1 is plotted versus its quantile value.
The one-dimensional quantile plot gives an idea of the local densities of points. Where the slope of the interpolated points is flatter, the density of points is higher. This type of plot is closely related to percentage ogives.
A quantile-quantile plot is generated when more than one statistical list is passed, ie. the command scatterplot(data1, data2, format=quantile), or scatterplot(data1, data2, data3, format=quantile) is used. In these plots, the quantiles of each data set are plotted against each other. So the i^th quantile of data1 is plotted as the x-coordinate versus the i^th quantile of data2 in the y-coordinate, and if specified, the i^th quantile of data3 in the z-coordinate. Note that in this case the statistical lists need not have equal weight.
Multi-dimensional quantile plots, or quantile-quantile plots are useful in comparing multiple data sets. Consider data sets of the maximum daily temperatures in two cities. A scatter plot of one set against the other facilitates comparison of temperatures at the two cities, at each given day. The quantile-quantile plot provides answers to questions like: are the lowest third daily temperatures at this city over a greater span of temperatures than those in the lowest third in the other city.
Class data are plotted as lines, extending the range of the class. When classes overlap (with points, or other classes), it is impossible to determine the correct quantile of the overlapping data. In this case, a warning is printed and the classes are replaced with their corresponding classmarks. When more than one statistical list is used, it may happen that one list requires the use of classmarks, while the other(s) do not. A warning is printed for each data set requiring classmarks. Missing data is ignored.
The command with(stats[statplots] allows the use of the abbreviated form of this command.
Examples
See Also
Statistics[Quantile], Statistics[QuantilePlot], statplots(deprecated)[scatterplot], stats(deprecated)[data], stats(deprecated)[statplots], transform(deprecated)[cumulativefrequency]
Download Help Document