Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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