Creates an R chart given sample data.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
x
Type: array< System..::.Double ,2>[,](,)[,]
A two-dimensional array containing sample data. The data of the i-th sample is in x[i,*]. Each sample must contain at least 2 and no more than 50 observations.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionis thrown if the number of samples is less than 2 or greater than 50.

See Also