Introduction à la détection d'anomalies en R
Alastair Rushworth
Data Scientist
boxplot(temperature, ylab = "Celsius")

hist(temperature, breaks = 6)

Symétrique et en cloche ?
Utilisez la fonction grubbs.test() :
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
Position du maximum
which.max(weights)
5
Position du minimum
which.min(temperature)
12
Introduction à la détection d'anomalies en R