Creates an X-bar chart from sample data using sample ranges.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node..
x
Type: array< array< System..::.Double >[]()[] >[]()[]
An array of arrays containing sample data. The data of the i-th sample is in x[i]. Each row must have between 2 and 50.

See Also