Statistics
AgglomeratedPlot
generate agglomerated plots
Calling Sequence
Parameters
Options
Description
Examples
AgglomeratedPlot(X, Y, Z, options, plotoptions)
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
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).
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 be 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.
with⁡Statistics:
data≔Sample⁡Normal⁡0,1,75:
AgglomeratedPlot⁡data,n=2.5,length=0.25,size=600,200
A≔Sample⁡Normal⁡0,1,200:
B≔Sample⁡Normal⁡0,1,200:
C≔Sample⁡Normal⁡0,1,200:
AgglomeratedPlot⁡A,B,C,n=2,length=0.5
The commands to create the plots from the Plotting Guide are
data1≔Sample⁡Normal⁡0,1,40:
data2≔Sample⁡Normal⁡0,1,40:
AgglomeratedPlot⁡data1,data2,n=2
A≔Sample⁡GammaDistribution⁡1,1,30:
B≔Sample⁡GammaDistribution⁡1,3,30:
C≔Sample⁡Normal⁡0,1,30:
See Also
plot/options
plots[display]
Statistics/Visualization
Statistics[BubblePlot]
Statistics[SunflowerPlot]
Download Help Document