2

I am working on some algorithms for anomaly detection

The dataset is clean our anomalies so I want to add some artificial anomalies.

I have added some anomalies. I get the maximum value of the dataset and add 20-25%, meaning these added anomalies are bigger than the max value by 20 to 25%

Are there any other types of anomalies that would be nice to have had in an anomaly detection algorithm dataset?

My dataset is with integers and float

E199504
  • 607
  • 1
  • 6
  • 12

1 Answers1

0

There are many options. Here a couple:

  • Values that very high or very low.
  • Values that are many standard deviations from current distributions.
  • Multivariate anomalies - the combination of values across features are anomalous
Brian Spiering
  • 23,131
  • 2
  • 29
  • 113