BoxPlot Constructor (AxisXY, Double, BoxPlotStatistics) |
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,
BoxPlotStatistics[] statistics
)
Public Sub New (
axis As AxisXY,
x As Double(),
statistics As BoxPlotStatistics()
)
public:
BoxPlot(
AxisXY^ axis,
array<double>^ x,
array<BoxPlotStatistics^>^ statistics
)
new :
axis : AxisXY *
x : float[] *
statistics : BoxPlotStatistics[] -> 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.
- statistics
- Type: Imsl.Chart2DBoxPlotStatistics
A BoxPlot.Statistics[] containing the statistics for each
element in x.
Remarks
The number of BoxPlot.Statistics[] must equal x.Length.
See Also