I have a list of double values and I want to find outliers in it. Does weka provide any algorithm to settle the problem?
In this work paper (first link), you have full-text implementation of an outlier algorithm with WEKA.
Also, algorithm used is
proposed in the paper, “A Unified Approach to Detecting Spatial Outliers”, by S. Shekhar et al. The paper shows several spatial outlier detection tests. For example, a variogram-cloud displays data points related by neighborhood relationships. For each pair of locations, the square-root of the absolute difference between attribute values at the locations versus the Euclidean distance between the locations are plotted. In data sets exhibiting strong spatial dependence, the variance in the attribute differences data sets exhibiting strong spatial dependence, the variance in the attribute difference will increase with increasing distance between locations. Locations that are near to one another, but with large attribute differences, might indicate a spatial outlier, even though the values at both locations may appear to be reasonable when examining the data set non-spatially. One major drawback of other outlier detection algorithms leads to some true spatial outliers being ignored and some false spatial outliers being identified.
For algorithms for outliers detection, you may have a look at this SIAM tutorial.