Introduction to Anomaly Detection in R
Alastair Rushworth
Data Scientist
Anomaly: a data point or collection of data points that do not follow the same pattern or have the same structure as the rest of the data
Example: A single 30C daily high temperature among a set of ordinary spring days
summary(temperature)
Min. 1st Qu. Median Mean 3rd Qu. Max.
18.00 20.45 22.45 22.30 22.98 30.00
boxplot(temperature, ylab = "Celsius")
Example: 10 consecutive high daily temperatures
Introduction to Anomaly Detection in R