您的位置:首页 > Web前端

the difference between LAR, and the Bisquare Remain Robust in regression —Curve Fitting Tool

2018-03-11 21:55 1166 查看
What is the difference between LAR, Bisquare and other options Robust mode?
I'm creating regression models and with these commands I can many great results but need to know what I'm wearing.
Least absolute residuals (LAR) — The LAR method finds a curve that minimizes the absolute difference of the residuals, rather than the squared differences. Therefore, extreme values have a lesser influence on the fit.Bisquare weights — This method minimizes a weighted sum of squares, where the weight given to each data point depends on how far the point is from the fitted line. Points near the line get full weight. Points farther from the line get reduced weight. Points that are farther from the line than would be expected by random chance get zero weight. For most cases, the bisquare weight method is preferred over LAR because it simultaneously seeks to find a curve that fits the bulk of the data using the usual least-squares approach, and it minimizes the effect of outliers.This information can be found on this Mathworks website.Also to make a summary:
use LAR for data with less outliners/anomalies in your data. (each datapoint is as important as one other)
use Bisquare for data which has outliners, but where you think that these outlines are due to i.e. disturbances and you don't want that your fit is affected by these outliners.
详细见:https://cn.mathworks.com/matlabcentral/answers/183690-what-is-the-difference-between-lar-and-the-bisquare-remain-robust-in-regression-curve-fitting-tool
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: