Introductie tot anomaliedetectie in R
Alastair Rushworth
Data Scientist


library(isofor)furniture_tree <- iForest(data = furniture, nt = 1)
iForest()-argumenten
data - dataframent - aantal te groeien isolation trees
Pakket downloaden via https://github.com/Zelazny7/isofor
furniture_score <- predict(furniture_tree, newdata = furniture)
predict()-argumenten
object - een getraind iForest-modelnewdata - data om te scorenfurniture_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
Gestandaardiseerde padlengte
Introductie tot anomaliedetectie in R