Constructs a box plot chart node with specified x values.

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

Syntax

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

Parameters

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

Remarks

The number of rows in obs must equal the length of x. The length of each row in obs must be at least 4.

See Also