TableOneWayGetFrequencyTableUsingClassmarks Method |
Returns the one-way frequency table using class marks.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] GetFrequencyTableUsingClassmarks(
double[] classmarks
)
Public Function GetFrequencyTableUsingClassmarks (
classmarks As Double()
) As Double()
public:
array<double>^ GetFrequencyTableUsingClassmarks(
array<double>^ classmarks
)
member GetFrequencyTableUsingClassmarks :
classmarks : float[] -> float[]
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