BoxPlot Constructor (AxisXY, Double, Double) |
Constructs a box plot chart node with specified x values.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public BoxPlot(
AxisXY axis,
double[] x,
double[][] obs
)
Public Sub New (
axis As AxisXY,
x As Double(),
obs As Double()()
)
public:
BoxPlot(
AxisXY^ axis,
array<double>^ x,
array<array<double>^>^ obs
)
new :
axis : AxisXY *
x : float[] *
obs : float[][] -> BoxPlot
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An AxisXY which is the parent of this node.
- x
- Type: SystemDouble
A double[] which contains the x values.
- obs
- Type: SystemDouble
A double[] which contains the observations for each x.
Remarks
The number of rows in obs must equal the length of
x. The length of each row in obs must be at least 4.
See Also