Integer Frequency
This class tabulates the frequency associated with the integers presented to it via the collect() method Every value presented is interpreted as an integer For every value presented a count is maintained. There could be space/time performance issues if the number of different values presented is large. Use intRange to limit the values within the specified range that can be observed. Values lower than the lower limit are counted as underflow and values greater than the upper limit are counted as overflow.
Parameters
a name for the instance
an array of data to tabulate
Parameters
the defined lower limit of the integers, values less than this are not tabulated
the defined upper limit of the integers, values less than this are not tabulated
a name for the instance
an array of data to tabulate