What is the difference between LAR, and the Bisquare Remain Robust in regression (Curve Fitting Tool)?

229 views (last 30 days)
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.
I appreciate any help. Thank U.

Accepted Answer

Christiaan
Christiaan on 18 Mar 2015
Edited: Christiaan on 18 Mar 2015
Dear Nuno,
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.
Kind regards, Christiaan van Ommeren
  4 Comments
t_hedrick
t_hedrick on 12 Jul 2017
The curve fitting app does not appear to export the weights, but you can get them using the robustfit() command line function; see stats.w from [b,stats]=robustfit(...)

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!