Research Article

Covert Network Analysis for Key Player Detection and Event Prediction Using a Hybrid Classifier

Algorithm 1

Algorithm to find outliers.
Procedure:  Find Outliers
Input:   , the number of nearest neighbors;
, the number of outliers to be returned;
, the set of data points.
Output:   , the set of outliers.
Begin
( is the cutoff threshold)
for each in   do
  Neighbors
  for each in such that <>   do
    if   or Distance( ) < Maxdist( , Neighbors( ))
    then
    Neighbors( ) = Closest( )
    end if
    if   and Distance( )) then
    Break
    end if
  end for
   = TopOutliers( )
   = MaxThreshold( )
end for
End