IMSL C# Numerical Library

TableOneWay.GetFrequencyTableUsingCutpoints Method 

Returns the one-way frequency table using cutpoints.

public double[] GetFrequencyTableUsingCutpoints(
   double[] cutpoints
);

Parameters

cutpoints
A double array containing the cutpoints.

Return Value

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

TableOneWay Class | Imsl.Stat Namespace