Mathematical impact of outliers on accuracy of models

AI Thread Summary
The discussion centers on the impact of outliers on the accuracy of predictive models, emphasizing that there is no universal method for assessing this influence. It highlights the importance of model context, particularly in regression analysis, where outliers can significantly skew results. Techniques such as rerunning models with and without outliers and using heuristics to identify and remove gross outliers are mentioned, though caution is advised against indiscriminate deletion. The conversation also touches on the complexities of identifying outliers in high-dimensional data and the need for robust statistical methods that minimize the influence of outliers without compromising the integrity of the analysis. Ultimately, while outliers can be problematic, their treatment requires careful consideration to avoid misleading conclusions.
Galteeth
Messages
69
Reaction score
1
Is there a general approach to calculating the impact outliers have on the accuracy of one's (predictive) model?
 
Last edited:
Physics news on Phys.org
Galteeth said:
Is there a general approach to calculating the impact outliers have on the accuracy of one's (predictive) model?

I think your question is too general. You need to describe your model.

If your model is based on regression against approximately normally distributed data, the influence of outliers is well understood.

I have seen data analysts rerun the model with and without the outlier points.
 
As wofsy said, the question is far too general. There is no one technique for analyzing what outliers will do / have done. Editing outliers is one commonly used technique. Sensors do occasionally go out to lunch. Transmission errors can create huge outliers. Just about the only thing one can do with a 1020 sigma outlier is to delete it. This suggests a refinement on the approach wofsy described in his post. Use some heuristic to delete gross outliers, run the model, delete statistical outliers that the gross heuristics didn't catch, and re-run the model.

This doesn't always work because it assumes that the heuristics and model are basically correct. Example: The ozone hole over Antarctica was initially discovered by ground observations rather than by satellite observations because of the overaggressive use of this technique on the satellite data.
 
The question and answers are dancing around the topic of robust statistical analysis methods. Deleting outliers is one way to deal with them, but unless you know that they are due to errors in measurement (sensors going haywire) eliminating them simply because they are outliers is not a valid statistical procedure.
It is also important to note these things:
outliers are rather easy to find in low dimensional problems, but extremely difficult in high dimensional problems.
in regression, points of high leverage may not appear as outliers in the traditional sense of large residuals - in severe situations the regression line may pass through them, so the residual is zero.

the point of a robust analysis is to use a process that yields results that can be interpreted in ways similar to the traditional least-squares (normal distribution assumption based) methods but which are not as easily influenced by departures from the hypothesized model as the traditional methods might be.

perhaps a too long comment, but discussing "tossing out data" in general can lead to dangerous things.
 
The partial leverage article was useful. Thanks for all the responses. What i was trying to get at was, is there a general means to determine the probability of a high-leverage point being an influential point?
 
Galteeth said:
The partial leverage article was useful. Thanks for all the responses. What i was trying to get at was, is there a general means to determine the probability of a high-leverage point being an influential point?

No, not to find the probability. If you are working with regression, doing a search on regression diagnostics will provide advice on some numerical measures of the severity of a leverage point on your fit.

Note that all points in statistics are influential - but not all are equally influential, in good or bad ways, so looking for "influential points" may not lead to much that is useful
 
Ok, thanks, that answered my question.
 
Back
Top