Java org.apache.commons.math.stat Frequency fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.stat Frequency fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.stat Frequency.

The text is from its open source code.

Constructor

Frequency()
Default constructor.

Method

voidaddValue(Object v)
Adds 1 to the frequency count for v.
voidaddValue(Comparable v)
Adds 1 to the frequency count for v.
voidaddValue(int v)
Adds 1 to the frequency count for v.
voidaddValue(Integer v)
Adds 1 to the frequency count for v.
voidaddValue(long v)
Adds 1 to the frequency count for v.
voidaddValue(char v)
Adds 1 to the frequency count for v.
longgetCount(Object v)
Returns the number of values = v.
longgetCount(Comparable v)
Returns the number of values = v.
longgetCount(int v)
Returns the number of values = v.
longgetCount(long v)
Returns the number of values = v.
longgetCount(char v)
Returns the number of values = v.
longgetCumFreq(Object v)
Returns the cumulative frequency of values less than or equal to v.
longgetCumFreq(Comparable v)
Returns the cumulative frequency of values less than or equal to v.
longgetCumFreq(int v)
Returns the cumulative frequency of values less than or equal to v.
longgetCumFreq(long v)
Returns the cumulative frequency of values less than or equal to v.
longgetCumFreq(char v)
Returns the cumulative frequency of values less than or equal to v.
doublegetCumPct(Object v)
Returns the cumulative percentage of values less than or equal to v (as a proportion between 0 and 1).
doublegetCumPct(Comparable v)
Returns the cumulative percentage of values less than or equal to v (as a proportion between 0 and 1).
doublegetCumPct(int v)
Returns the cumulative percentage of values less than or equal to v (as a proportion between 0 and 1).
doublegetCumPct(long v)
Returns the cumulative percentage of values less than or equal to v (as a proportion between 0 and 1).
doublegetCumPct(char v)
Returns the cumulative percentage of values less than or equal to v (as a proportion between 0 and 1).
doublegetPct(Object v)
Returns the percentage of values that are equal to v (as a proportion between 0 and 1).
doublegetPct(Comparable v)
Returns the percentage of values that are equal to v (as a proportion between 0 and 1).
doublegetPct(int v)
Returns the percentage of values that are equal to v (as a proportion between 0 and 1).
doublegetPct(long v)
Returns the percentage of values that are equal to v (as a proportion between 0 and 1).
doublegetPct(char v)
Returns the percentage of values that are equal to v (as a proportion between 0 and 1).
Iterator>valuesIterator()
Returns an Iterator over the set of values that have been added.