Introduction to Anomaly Detection in R
Alastair Rushworth
Data Scientist
boxplot(temperature, ylab = "Celsius")
hist(temperature, breaks = 6)
Symmetrical & bell shaped?
Use the grubbs.test()
function:
grubbs.test(temperature)
Grubbs test for one outlier
data: temp
G = 3.07610, U = 0.41065, p-value = 0.001796
alternative hypothesis: highest value 30 is an outlier
grubbs.test(temperature)
Grubbs test for one outlier
data: temperature
G = 3.07610, U = 0.41065, p-value = 0.001796
alternative hypothesis: highest value 30 is an outlier
p-value
Location of the maximum
which.max(weights)
5
Location of the minimum
which.min(temperature)
12
Introduction to Anomaly Detection in R