|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectakka.cluster.EWMA$
public class EWMA$
Field Summary | |
---|---|
static EWMA$ |
MODULE$
Static reference to the singleton instance of this Scala object. |
Constructor Summary | |
---|---|
EWMA$()
|
Method Summary | |
---|---|
double |
alpha(scala.concurrent.duration.FiniteDuration halfLife,
scala.concurrent.duration.FiniteDuration collectInterval)
Calculate the alpha (decay factor) used in EWMA
from specified half-life and interval between observations. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final EWMA$ MODULE$
Constructor Detail |
---|
public EWMA$()
Method Detail |
---|
public double alpha(scala.concurrent.duration.FiniteDuration halfLife, scala.concurrent.duration.FiniteDuration collectInterval)
EWMA
from specified half-life and interval between observations.
Half-life is the interval over which the weights decrease by a factor of two.
The relevance of each data sample is halved for every passing half-life duration,
i.e. after 4 times the half-life, a data sample’s relevance is reduced to 6% of
its original relevance. The initial relevance of a data sample is given by
1 – 0.5 ^ (collect-interval / half-life).
halfLife
- (undocumented)collectInterval
- (undocumented)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |