BubblePlot - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Statistics

  

BubblePlot

  

generate bubble plots

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

BubblePlot(X, Y, Z, plotoptions)

BubblePlot['interactive'](X, Y, Z)

Parameters

X

-

first data sample

Y

-

second data sample

Z

-

third data sample

plotoptions

-

options to be passed to the plots[display] command

Options

  

The plotoptions argument can contain plotting options, which will be passed to the plots[display] command. See plot/options for details.

Description

• 

The BubblePlot command generates a bubble plot for the specified data. The center of each bubble is defined by the values of the corresponding points in the first and the second data sets. The size of the bubbles is proportionate to the magnitude of the corresponding point in the third data set. Filled bubbles represent positive values.

• 

The first parameter X is the first data sample - given as a Vector for example.

• 

The second parameter Y is the second data sample - given as a Vector for example.

• 

The third parameter Z is the third data sample - given as a Vector for example. Note that X, Y, and Z must have the same number of elements.

• 

If the ['interactive'] option is used, a dialog box appears that allows for customized creation of the plot.

Examples

withStatistics:

X1,2,3,4,5,6,7,8,9,9:

Y1,4,2,3,3,1,5,1,5,5:

Z5,2,3,4,5,2,1,2,1,1:

This is the command to create the plot from the Plotting Guide using the data above.

BubblePlotX,Y,Z

See Also

Statistics

Statistics/Visualization

Statistics[PointPlot]

Statistics[QuantilePlot]