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
  • 617
  • 2
  • 7
  • 16
tourist
  • 193

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.