Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Statistics[AgglomeratedPlot] - generate agglomerated plots
Calling Sequence
AgglomeratedPlot(X, Y, Z, options, plotoptions)
Parameters
X
-
first data sample
Y
(optional) second data sample
Z
(optional) third data sample
options
(optional) equation(s) of the form option=value where option is one of length, or n; specify options for generating the agglomerated plot
plotoptions
options to be passed to the plots[display] command
Description
The AgglomeratedPlot command generates an agglomerated plot for the specified data. This type of plot is often used by cartographers or when there is a large number of data points involved. The aim is to remove the unnecessary detail of each individual point in a plot, and replace dense regions of data with boxes.
If n or more points are found within a cube, whose size is defined by length, then they are replaced by the tightest fitting box possible. If n^2 or more points are found within the same cube, then the box will emphasized with thicker borders.
The parameters X, Y and Z are the data samples to be plotted. Each can be given as a Vector, Matrix, Array, or list, though they do not all have to be of the same type. They also do not need to be one dimensional, but will be treated as though they are. The first data sample, X, is required, but the second and third data samples, Y and Z respectively, are optional. Note that all data samples must have the same number of elements.
This function is part of the Statistics package, so it can be used in the short form AgglomeratedPlot(..) only after executing the command with(Statistics). However, it can always be accessed through the long form of the command by using Statistics[AgglomeratedPlot](..).
Options
The options argument can contain one or more of the options shown below. All unrecognized options will be passed to the plots[display] command. See plot[options] for details.
length = numeric
This option specifies the length of one side of the cubes that are used to check for appropriately dense data clusters. It also defines the maximum size of a box used to replace such data clusters. If length is zero, or unspecified, then a default value is used. The default value is one-tenth of the range of the first data sample.
n = numeric
The value of this option is the minimum number of points that will be replaced by the tightest fitting box that encloses them. The tightest fitting box in one-dimension will always be a line. In higher dimensions, rectangles or boxes may be plotted. If n is zero, or unspecified, a default value will be used. The default value for n is the cube root of the number of points, divided by the number of dimensions of the data (which is the number of data samples passed to AgglomeratedPlot).
Examples
The commands to create the plots from the Plotting Guide are
See Also
plot[options], plots[display], Statistics, Statistics[BubblePlot], Statistics[SunflowerPlot], Statistics[Visualization]
Download Help Document