Click or drag to resize
TableOneWayGetFrequencyTableUsingClassmarks Method
Returns the one-way frequency table using class marks.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[] GetFrequencyTableUsingClassmarks(
	double[] classmarks
)

Parameters

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

Return Value

Type: Double
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