Constructs a box plot chart.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public BoxPlot(
	AxisXY axis,
	double[][] obs
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	obs As Double()() _
)
Visual C++
public:
BoxPlot(
	AxisXY^ axis, 
	array<array<double>^>^ obs
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
An AxisXY which is the parent of this node.
obs
Type: array< array< System..::.Double >[]()[] >[]()[]
A double[] containing the observations.

Remarks

The length of each row in obs must be at least 4.

See Also