IMSL C# Numerical Library

TableOneWay.GetFrequencyTableUsingClassmarks Method 

Returns the one-way frequency table using class marks.

public double[] GetFrequencyTableUsingClassmarks(
   double[] classmarks
);

Parameters

classmarks
A double array containing either the cutpoints or the class marks.

Return Value

A double array containing the one-way frequency table.

Remarks

Equally spaced class marks in ascending order must be provided in the array classmarks of length nIntervals. The class marks are the midpoints of each of the nIntervals. Each interval is assumed to have length classmarks[1] - classmarks[0]. nIntervals must be greater than or equal to 2.

See Also

TableOneWay Class | Imsl.Stat Namespace