Package deepnetts.util
Class Stats
java.lang.Object
deepnetts.util.Stats
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
count()
float
getIqr()
float
getMax()
float
getMean()
float
float
getMin()
float
getQ1()
float
getQ3()
float
getRange()
float
getStd()
float
getVar()
void
setCount
(int count) void
setMax
(float max) void
setMean
(float mean) void
setMedian
(float median) void
setMin
(float min) void
setQ1
(float q1) void
setQ3
(float q3) void
setStd
(float std) void
setVar
(float var) toString()
-
Constructor Details
-
Stats
public Stats()
-
-
Method Details
-
getMin
public float getMin() -
setMin
public void setMin(float min) -
getMax
public float getMax() -
setMax
public void setMax(float max) -
getMean
public float getMean() -
setMean
public void setMean(float mean) -
getMedian
public float getMedian() -
setMedian
public void setMedian(float median) -
getStd
public float getStd() -
setStd
public void setStd(float std) -
getVar
public float getVar() -
setVar
public void setVar(float var) -
getQ1
public float getQ1() -
setQ1
public void setQ1(float q1) -
getQ3
public float getQ3() -
setQ3
public void setQ3(float q3) -
getIqr
public float getIqr() -
getRange
public float getRange() -
count
public int count() -
setCount
public void setCount(int count) -
toString
-