Class StatCounter
- java.lang.Object
-
- org.datavec.api.transform.analysis.counter.StatCounter
-
- All Implemented Interfaces:
Serializable
public class StatCounter extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StatCounter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(double x)StatCounterclone()longgetCount()doublegetMax()doublegetMean()doublegetMin()doublegetStddev(boolean population)doublegetSum()doublegetVariance(boolean population)StatCountermerge(StatCounter o)StringtoString()
-
-
-
Method Detail
-
getMean
public double getMean()
-
getSum
public double getSum()
-
getMin
public double getMin()
-
getMax
public double getMax()
-
getCount
public long getCount()
-
getVariance
public double getVariance(boolean population)
-
getStddev
public double getStddev(boolean population)
-
add
public void add(double x)
-
merge
public StatCounter merge(StatCounter o)
-
clone
public StatCounter clone()
-
-