Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I just found "Robust Fitting of Linear Models" rlm() function in the MASS library.

I would like to know what is the difference between this function and the standard lm() (linear regression).

Could someone give me a short explanation?

Thank you

share|improve this question

migrated from stackoverflow.com Aug 1 '11 at 8:28

1 Answer

It is for robust linear models. It is describe in Venables & Ripley. However, details of the robust calculations would not fit in a "short answer": you need to look into several papers by Ripley, Tukey, and others.

Check out this paper by Ripley for more information: http://www.stats.ox.ac.uk/pub/StatMeth/Robust.pdf

share|improve this answer
2  
You can also see bits and pieces of the discussion in the relevant book (Venables and Ripley MASS) on Google books: books.google.com/… -- if you want the whole thing you need to buy the book or find it at the library ... very briefly, robust regression downweights the effects of outliers on the analysis. – Ben Bolker Jul 31 '11 at 19:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.