TableOneWayGetFrequencyTableUsingCutpoints Method |
Returns the one-way frequency table using cutpoints.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] GetFrequencyTableUsingCutpoints(
double[] cutpoints
)
Public Function GetFrequencyTableUsingCutpoints (
cutpoints As Double()
) As Double()
public:
array<double>^ GetFrequencyTableUsingCutpoints(
array<double>^ cutpoints
)
member GetFrequencyTableUsingCutpoints :
cutpoints : float[] -> float[]
Parameters
- cutpoints
- Type: SystemDouble
A double array containing the cutpoints.
Return Value
Type:
Double
A
double array containing the one-way frequency table.
Remarks
The cutpoints are boundaries that must be provided in the array
cutpoints of length nIntervals-1. This option allows
unequal interval lengths. The initial interval is closed on the right
and includes the initial cutpoint as its right endpoint. The last
interval is open on the left and includes all values greater than the
last cutpoint. The remaining nIntervals-2 intervals are open
on the left and closed on the right. Argument nIntervals must
be greater than or equal to 3 for this option.
See Also