2

What are some techniques that I can use for anomaly detection given a non-Normal distribution? I have less than twenty available observations.

Ethan
  • 1,633
  • 9
  • 24
  • 39
youngam
  • 41
  • 3

1 Answers1

2

I would suggest a nearest neighbors approach. This technique is non-parametric, such that it does not assume your features follow any given distribution. The degree from which a novel instance can be classified as anomalous can set through some p-value estimation. These techniques are computationally expensive however due to your small dataset this may be well suited.


Check out:

Learning Minimum Volume Sets http://www.stat.rice.edu/~cscott/pubs/minvol06jmlr.pdf

Anomaly Detection with Score functions based on Nearest Neighbor Graphs https://arxiv.org/abs/0910.5461

New statistic in P-value estimation for anomaly detection http://ieeexplore.ieee.org/document/6319713/


You can also use more rudimentary anomaly detection techniques such as a generalized likelihood ratio test. But, this is kind of old-school.

JahKnows
  • 8,866
  • 30
  • 45
  • I can elaborate on how these techniques work if you have difficulty with the paper. They're relatively easy concepts clouded in a lot of theory in the papers. – JahKnows Mar 22 '18 at 10:52
  • Does this approach work with non-negative distributions as well? – Maxim Jun 23 '22 at 16:29