Creates an R chart given the ranges for a series of equally sized samples.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: System..::.Int32
The number of observations in each sample. It must be at least 2 and no more than 50.
range
Type: array< System..::.Double >[]()[]
An array containing the data ranges for a series of samples.

See Also