r - Least Absolute Deviation function - Stack Overflow
Any R package available that computes Least Absolute Deviation (LAD) regression estimates and return standard errors of parameters?
$R^2$ for least absolute deviation regression - Cross Validated
[D] least absolute deviations (to a power?) and robust regression
Videos
I've been thinking a little bit about least squares and how one method of getting a robust regression alternative is to use Least Absolute Deviations. One of the things that seems to be potentially problematic is that there could be multiple solutions, with the example on wikipedia given as such:
https://upload.wikimedia.org/wikipedia/en/8/89/Least_absolute_deviations_regression_method_diagram.gif
Linked from: https://en.wikipedia.org/wiki/Least_absolute_deviations
Would a fairly simple solution to this be to use a near-1 power? That is, instead of minimizing ABSOLUTE(residuals), you could instead minimize [ABSOLUTE(residuals)]1.01 or 1.1 or 1.0001 or some other value less than 2? When you get to 2, of course, you're at least squares and no longer reducing the effect of outliers, so I'm thinking of values between 1 and 2, but most likely near 1. Is this common and I'm just not aware of what this is called? Would this be a reasonable approach to robust regression while getting unique solutions vs the LAD approach?
