Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 399 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 399 Bytes

LOFwithCluster

LOF means "Local Outlier Factor", a alogrithom for isolate(abnormal) point discovering.

With Claster means it will give cluster for normal points.

Usage

using LOFwithCluster
data = [rand(256) for i in 1:1000]
lofc = SLOFC(data)
@show getClasses(lofc)
@show getIsolate(lofc)
newpoint = rand(256)
isIsolate, clsid = insert!(lofc, newpoint)
@show isIsolate
@show clsid