Integer Frequency Plot Data Ifc
Minimal data contract required by IntegerFrequencyPlot to render a discrete bar chart.
All three arrays must be the same length, indexed in ascending value order: element i of values, frequencies, and proportions all refer to the same observed integer.
In-memory IntegerFrequency instances satisfy this naturally (values are maintained in a sorted map).
Database implementations must sort source rows by
valuebefore populating these arrays;DbIntegerFrequencyPlotDatadoes this automatically in its constructor.
IntegerFrequencyIfc extends this interface.
Inheritors
Properties
Returns an array of size numberOfCells containing the frequencies for each value observed. The 0th element is the frequency for the value stored at element 0 of the array returned by the values property
Returns an array of size numberOfCells containing the proportion by value. The 0th element is the proportion for the value stored at element 0 of the array returned by the values property, etc.