Test if the distance-based algorithm works for determining outlier points.
The basic idea is as follows: (Points marked as (?) are questionable in utility due to possible unforeseen effects. Research before marking issue as completed.)
Tabulate the distance between each two adjacent points in terms of increasing X. Include the two points in the data container.
Perform a Modified Thompson Tau outlier search on the distance between each two adjacent points, and remove outliers found via this method.
(?) Re-calculate distances between gaps created by outlier search.
(?) Repeat Modified Thompson Tau and recalculation steps until no outliers are found.
Test if the distance-based algorithm works for determining outlier points.
The basic idea is as follows: (Points marked as (?) are questionable in utility due to possible unforeseen effects. Research before marking issue as completed.)