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
Statistics[SymmetryPlot] - generate symmetry plots
Calling Sequence
SymmetryPlot(X, plotoptions)
Parameters
X
-
data sample
plotoptions
options to be passed to the plots[display] command
Description
The SymmetryPlot command generates a symmetry plot for the specified data. The elements of X are sorted and plotted in such a way to show which way the data is skewed. If the data is indexed as X[i], med is the median of the data and n is the total number of observations, then a plot of X[n+1-i] - med versus med-data[i] for all i is produced together with the y=x line.
If the data set is symmetric with respect to the median, then the plot produced will have points lying along the line y=x. Any departure from this symmetry will be visible as points lying off of this line. If the data is skewed to the right, the points will lie above the line. If the data is skewed to the left, the points will lie below the line.
The parameter X is the data sample to be plotted. It can be given as a Vector, Matrix, Array, or list and does not need to be one dimensional, though it will be treated as though it were. There must be at least two points present for this function to create a plot.
This function is part of the Statistics package, so it can be used in the short form SymmetryPlot(..) only after executing the command with(Statistics). However, it can always be accessed through the long form of the command by using Statistics[SymmetryPlot](..).
Options
The plotoptions argument can contain one or more of the options accepted by the plots[display] command. See plot[options] for details.
Examples
This data is skewed to the right, and so the points lie above y=x.
This data is skewed to the left, and so the points lie below y=x.
This data is symmetric, and so the points fall on the line y=x.
The commands to create the plot from the Plotting Guide are
See Also
plot[options], plots[display], Statistics, Statistics[Visualization]
Download Help Document