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

Online Help

All Products    Maple    MapleSim


Statistics

  

ScatterPlot3D

  

generate 3D scatter plots

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

ScatterPlot3D(XYZ, options, plotoptions)

Parameters

XYZ

-

Array or Matrix of numeric data, of size mx3

options

-

(optional) equation(s) of the form option=value where option is one of lowess, bandwidth, fitorder, rule, strictorder, or showpoints; specify options for generating the scatter plot

plotoptions

-

options to be passed to the plots[display] command

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.

• 

lowess=truefalse

  

Designates whether lowess smoothing should be applied to the scatter plot. The smoothing behavior is modified by the options bandwidth, fitorder, rule, and strictorder; see these options for more details. The default value is false.

• 

bandwidth=realcons

  

This option is used to control the bandwidth of the lowess smoothing algorithm, when lowess fitting is enabled. The value of this option specifies the proportion of the data points used in each local regression. The default value depends on fitorder and the total number of data points. At the value of bandwidth=1 all data points in the sample will be used to compute each plotted grid value, which is quite expensive and not really in the spirit of lowess smoothing. As this value is decreased, fewer data points will be found within the window and used for each individual local fit, and this will decrease the duration of the whole computation. As this value is increased, more points farther away will influence the output value for each local fit, and this will also increase the duration of the whole computation.

• 

fitorder=nonnegint

  

The degree of the bivariate polynomial used in lowess smoothing, when lowess fitting is enabled. The default value is 1.

• 

rule=identical(1,2,3)

  

Designates the rule by which the nearby points falling in the window specified by bandwidth are weighted. The default value is 3 , which denotes the tri-cubed rule. A value of 0 for this option means that all points found in the window will have the same weight.

• 

strictorder=truefalse

  

Designates whether the order of the fitting curve may not be reduced in the case that the number of points found in the window is less than what would be necessary for the supplied fitorder option. The default value is false, which allows reduction of the order at any individual computed point.

• 

showpoints=truefalse

  

Designates whether the pointplot component will be included in the output. If false then only the surface will be included. The default value is true.

Description

• 

The ScatterPlot3D command generates a 3D scatter plot for the specified 2D data together with a surface approximated using lowess smoothing (LOcally Weighted Scatterplot Smoothing).

• 

The first parameter, XYZ, is the data sample - given as a Matrix or Array with three columns and as many rows as there are distinct data points. Each row represents the x-, y-, and z-coordinate of a data point.

• 

The collection of x- and y-components of all the data points need not collectively form a regular grid in the x-y plane. The data points may be irregularly spaced when projected onto the x-y plane.

• 

As this is a smoothing technique, the resulting surface will not necessarily pass exactly through all the the 3D data points.

Examples

First, some data is constructed and noise is then added to the z-component.

withStatistics:

XSampleUniform50,50,175:

YSampleUniform50,50,175:

ZerrorSampleNormal0,100,175:

ZArray1..175,isinYi20Xi62Yi72Zerrori:

XYZMatrixX,Y,Z,datatype=float8%T

The view from above shows the irregular spacing of the x-y components of the data.

ScatterPlot3DXYZ,axes=box,orientation=20,0,0

A fitting order of 0 produces a form of weighted moving average.

ScatterPlot3DXYZ,lowess,fitorder=0,rule=0,grid=25,25,axes=box,orientation=20,70,0

Linear or quadratic fitting, with a fitting order of 1 or 2 respectively, produce smoother plots.

ScatterPlot3DXYZ,lowess,fitorder=1,rule=2,grid=25,25,axes=box,orientation=20,70,0

ScatterPlot3DXYZ,lowess,fitorder=1,rule=2,showpoints=false,grid=25,25,axes=box,orientation=20,70,0

ScatterPlot3DXYZ,lowess,fitorder=2,rule=3,grid=25,25,axes=box,orientation=20,70,0

Compatibility

• 

The Statistics[ScatterPlot3D] command was introduced in Maple 16.

• 

For more information on Maple 16 changes, see Updates in Maple 16.

• 

The Statistics[ScatterPlot3D] command was updated in Maple 2015.

See Also

CurveFitting

examples,Interpolation_and_Smoothing

plots[surfdata]

Statistics

Statistics/Visualization

Statistics[Lowess]

Statistics[ScatterPlot]