-
Exponentially weighted moving average
average is a single data point;
moving average is a sequence of data point;
weighted moving average means the process calculating average 给不同元素不同权重;
exponential weighted moving average 指计算权重的方式是指数方式;
先看这四个概念中最核心的average,求average的目的在物理意义上是smoothing the data: reduce the noise in noisy time-series data.
-
EWMA formula
最新值给予权重 ;
前值给予权重 ;
指数体现在前值中。
The degree of mixing is controlled by the parameter (value between 0-1).
If a=10% (small), most of the contribution will come from the previouse value of the signal. In this case, “smoothing” will be very strong.
If a=90%(large), most of the contribution will come from the current value of the signal. In this case, “smoothing” will be minimum.
-
Exponential
If is a positive integer and is any real number, then corresponds to repeated mutiplication
We can call this “x raised to the power of n”;or “x to the power of n”;
or “x to the n”;
Here , x is the
base
and n is theexponent
or thepower
.An exponential function can describe growth or decay.
is an example of exponential decay.
is an example of exponential growth.In the exponential growth of , the function doubles every time you add one to its input ;
In the exponential decay of , the function shrinks in half every time you add one to its input .
The presence of this doubling time or half-life is characteristic of exponential functions, indicating how fast they grow or decay.
指数方程用于描述增长或衰减的速度。
-
References
- [Beginner]ML Basics: Exponentially weighted moving average
- Math Insight : The exponential function