@@ -58,8 +58,9 @@ Sort multidimensional data usin non-dominated sorting algorithm.
5858
5959
6060# References
61- Satman, Mehmet Hakan. "A new algorithm for detecting outliers in linear regression."
62- International Journal of statistics and Probability 2.3 (2013): 101.
61+ Satman, Mehmet Hakan. "Fast online detection of outliers using least-trimmed squares
62+ regression with non-dominated sorting based initial subsets."
63+ International Journal of Advanced Statistics and Probability 3.1 (2015): 53.
6364
6465Deb, Kalyanmoy, et al. "A fast elitist non-dominated sorting genetic algorithm for multi-objective optimization: NSGA-II."
6566International conference on parallel problem solving from nature. Springer, Berlin, Heidelberg, 2000.
@@ -140,8 +141,9 @@ julia> ndsranks(datamat)
140141```
141142
142143# References
143- Satman, Mehmet Hakan. "A new algorithm for detecting outliers in linear regression."
144- International Journal of statistics and Probability 2.3 (2013): 101.
144+ Satman, Mehmet Hakan. "Fast online detection of outliers using least-trimmed squares
145+ regression with non-dominated sorting based initial subsets."
146+ International Journal of Advanced Statistics and Probability 3.1 (2015): 53.
145147
146148Deb, Kalyanmoy, et al. "A fast elitist non-dominated sorting genetic algorithm for multi-objective optimization: NSGA-II."
147149International conference on parallel problem solving from nature. Springer, Berlin, Heidelberg, 2000.
@@ -192,8 +194,9 @@ julia> midlist(10,3)
192194```
193195
194196# References
195- Satman, Mehmet Hakan. "A new algorithm for detecting outliers in linear regression."
196- International Journal of statistics and Probability 2.3 (2013): 101.
197+ Satman, Mehmet Hakan. "Fast online detection of outliers using least-trimmed squares
198+ regression with non-dominated sorting based initial subsets."
199+ International Journal of Advanced Statistics and Probability 3.1 (2015): 53.
197200"""
198201function midlist (n:: Int , p:: Int ):: Array{Int,1}
199202 midlist = []
@@ -238,8 +241,9 @@ Dict{Any,Any} with 1 entry:
238241```
239242
240243# References
241- Satman, Mehmet Hakan. "A new algorithm for detecting outliers in linear regression."
242- International Journal of statistics and Probability 2.3 (2013): 101.
244+ Satman, Mehmet Hakan. "Fast online detection of outliers using least-trimmed squares
245+ regression with non-dominated sorting based initial subsets."
246+ International Journal of Advanced Statistics and Probability 3.1 (2015): 53.
243247"""
244248function satman2015 (setting:: RegressionSetting )
245249 X, y = @extractRegressionSetting setting
@@ -271,7 +275,7 @@ function satman2015(X::Array{Float64,2}, y::Array{Float64,1})
271275 sorted_indices = sortperm (md)
272276 best_h_indices = sorted_indices[1 : h]
273277
274- crit , bestset = iterateCSteps (X, y, best_h_indices, h)
278+ _ , bestset = iterateCSteps (X, y, best_h_indices, h)
275279
276280 olsreg = ols (X[bestset, :], y[bestset])
277281 betas = coef (olsreg)
0 commit comments