Introduction to Anomaly Detection in R
Alastair Rushworth
Data Scientist
library(isofor)
furniture_tree <- iForest(data = furniture, nt = 1)
iForest()
arguments
data
- dataframent
- number of isolation trees to grow
Package download from https://github.com/Zelazny7/isofor
furniture_score <- predict(furniture_tree, newdata = furniture)
predict()
arguments
object
- a fitted iForest
modelnewdata
- data to scorefurniture_score[1:10]
[1] 0.5820092 0.5820092 0.5439338 0.5820092 0.5439338
[6] 0.5820092 0.7129862 0.5363547 0.5363547 0.5363547
Standardized path length
Introduction to Anomaly Detection in R