2

I tried to implement outlier detection for one dimension using inter quartile. For instance, a given variable cost or revenue or profit. but I'm missing outliers in other dimensions when running for one dimension.

How to detect outliers for multi dimensional data , like cost and revenue and profit at once.

Is there any efficient algorithm for this?

silent_dev
  • 557
  • 1
  • 6
  • 16
tourist
  • 183
  • 1
  • 8

1 Answers1

0

If you are working on Python, you could try SVM One Class and Least Squares Anomaly Detection, both are unsupervised learning, so you train giving "examples" of inliers.

pgalilea
  • 99
  • 2