outlierensembles provides a collection of outlier/anomaly detection ensembles. Given the anomaly scores of different anomaly detection methods, the following ensemble techniques can be used to construct an ensemble score:
You can install the released version of outlierensembles from CRAN with:
install.packages("outlierensembles")
And the development version from GitHub with:
# install.packages("devtools")
::install_github("sevvandi/outlierensembles") devtools
We use 7 anomaly detection methods from DDoutlier R package as our base methods. You can use any anomaly detection method you want to build the ensemble. First, we construct the IRT ensemble. The colors show the ensemble scores.
<- scale(faithful)
faithfulu
<- DDoutlier::KNN_AGG(faithfulu)
y1 <- DDoutlier::LOF(faithfulu)
y2 <- DDoutlier::COF(faithfulu)
y3 <- DDoutlier::INFLO(faithfulu)
y4 <- DDoutlier::KDEOS(faithfulu)
y5 <- DDoutlier::LDF(faithfulu)
y6 <- DDoutlier::LDOF(faithfulu)
y7 <- cbind.data.frame(y1, y2, y3, y4, y5, y6, y7)
Y <- irt_ensemble(Y)
ens1 #> Warning in sqrt(diag(solve(Hess))): NaNs produced
<- cbind.data.frame(faithful, ens1$scores)
df colnames(df)[3] <- "IRT"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=IRT)) + scale_color_gradient(low="yellow", high="red")
Then we do the greedy ensemble.
<- greedy_ensemble(Y)
ens2 <- cbind.data.frame(faithful, ens2$scores)
df colnames(df)[3] <- "Greedy"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=Greedy)) + scale_color_gradient(low="yellow", high="red")
We do the ICWA ensemble next.
<- icwa_ensemble(Y)
ens3 <- cbind.data.frame(faithful, ens3)
df colnames(df)[3] <- "ICWA"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=ICWA)) + scale_color_gradient(low="yellow", high="red")
Next, we use the maximum scores to build the ensemble.
<- max_ensemble(Y)
ens4 <- cbind.data.frame(faithful, ens4)
df colnames(df)[3] <- "Max"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=Max)) + scale_color_gradient(low="yellow", high="red")
Then, we use the a threshold sum to construct the ensemble.
<- threshold_ensemble(Y)
ens5 <- cbind.data.frame(faithful, ens5)
df colnames(df)[3] <- "Threshold"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=Threshold)) + scale_color_gradient(low="yellow", high="red")
Finally, we use the mean values as the ensemble score.
<- average_ensemble(Y)
ens6 <- cbind.data.frame(faithful, ens6)
df colnames(df)[3] <- "Average"
ggplot(df, aes(eruptions, waiting)) + geom_point(aes(color=Average)) + scale_color_gradient(low="yellow", high="red")
Aggarwal, Charu C., and Saket Sathe. 2015. “Theoretical Foundations and Algorithms for Outlier Ensembles.” ACM SIGKDD Explorations Newsletter 17 (1): 24–47. https://doi.org/10.1145/2830544.2830549.
Chiang, Alvin et al. 2017. “A study on anomaly detection ensembles.” Journal of Applied Logic 21: 1–13. https://doi.org/10.1016/j.jal.2016.12.002.
Kandanaarachchi, Sevvandi. 2021. “Unsupervised Anomaly Detection Ensembles Using Item Response Theory.” https://arxiv.org/abs/2106.06243.
Schubert, Erich, Remigius Wojdanowski, Arthur Zimek, and Hans Peter Kriegel. 2012. “On evaluation of outlier rankings and outlier scores.” In Proceedings of the 12th Siam International Conference on Data Mining, Sdm 2012, 1047–58.