Creates an XBarS chart given the means and standard deviations for a series of unequally sized samples.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: array< System..::.Int32 >[]()[]
An array containing the number of observations in each sample. Each sample must have at least one observation.
xbar
Type: array< System..::.Double >[]()[]
An array containing the mean values for a series of samples.
w
Type: array< System..::.Double >[]()[]
An array containing the within sample variation for a series of samples.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionis thrown if the three input arrays do not all have the same length.

See Also