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] - Excise Plot
Calling Sequence
stats[statplots, scatterplot](data, format=excised[p], ..)
statplots[scatterplot](data, format=excised[p], ..)
scatterplot(data, format=excised[p], ..)
Parameters
data
-
statistical list(s)
p
fraction of data points to remove from the plot
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=excised of the subpackage stats[statplots] removes the fraction of least dense data and plots a scatterplot of the remaining data.
This type of plot is often used when there is a large number of data points involved. The idea is that it is not necessary to have the detail of each individual point in a plot. Closely grouped points are supposedly more representative, so all other points are excised.
When p is a positive number between zero and one, p times the number of points are excised from the plot. In other words only the most densely clustered points are plotted in the scatter plot.
When p is a negative number between zero and -1, of the most densely clustered points are excised from the plot. In this case of the least densely clustered points are plotted in the scatter plot.
The default, when p is not specified is zero. This plot is identical to a scatter plot with no format parameter.
Relative density of points is calculated approximately by finding the distances between all points using the distance metric .
Class data is converted to classmarks before generating the plot. Weighted data is accounted for. Missing data is ignored.
The command with(stats[statplots]) allows the use of the abbreviated form of this command.
Examples
See Also
Statistics, Statistics[ScatterPlot], statplots(deprecated)[scatterplot], stats(deprecated)[data], stats(deprecated)[statplots]
Download Help Document