Creates a new instance of BoxPlot.Statistics.

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

Syntax

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

Parameters

obs
Type: array< System..::.Double >[]()[]
A double[] containing the set of observations.

Remarks

There must be at least 4 observations to compute the statistics.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if there are fewer than 4 observations.

See Also