Maximum Likelihood

Global Algorithm - One-Dimensional Algorithm

Maximum Likelihood algorithm decides whether a value is a value outside the region of interest based on that value’s distance from the estimated mean distribution. Generally, if

|Yiμ|>3σ,

the data point is considered outside the region of interest. μ is the mean distribution, Yi is ith element of Y and σ denotes the standard deviation. Note that μ±3σ contains 99.7 data under the assumption of normal distribution.

Input Parameters

Parameter Type Constraint Description Remarks
Y YRN NN Input data sequence of length N  
μ μR   Mean distribution of Y  
σ σR   Standard deviation of Y  

Output Parameters

Parameter Type Constraint Description Remarks
ˆY ˆYRN   Values in the Y list which are outside the region of interest are marked  

Tool Support

  • Matlab

    For details refer to the online documentation of the function ‘mle’.

Single Steps using the Algorithm

References

  • J. Han, M. Kamber and J. Pei, Data Mining - Concepts and Techniques, 3rd ed., Amsterdam: Morgan Kaufmann Publishers, 2012.