Introduzione all'Anomaly Detection in R
Alastair Rushworth
Data Scientist
plot(Width ~ Height, data = furniture)

furniture_scaled <- scale(furniture)plot(Width ~ Height, data = furniture_scaled)

Matrice delle distanze
furniture_scaled <- scale(furniture)
furniture_knn <- get.knn(furniture_scaled, 5)
Calcola e aggiungi il punteggio
furniture$score <- rowMeans(furniture_knn$nn.dist)head(furniture, 4)
Height Width score
1 58.7179 56.4663 0.4170000
2 54.6154 59.9279 0.3981695
3 58.7179 66.8510 0.2845042
4 63.8462 56.4663 0.4376807
plot(Width ~ Height, cex = sqrt(score), data = furniture, pch = 20)

Introduzione all'Anomaly Detection in R