Open meghapsimatrix opened 4 years ago
Is there any way to get residuals from models fit using lm_robust() ?
Not via resid(), if that is what you mean. See also #123 to see which methods have been implemented.
An easy alternative is to do Y - fitted(model) if you are in a hurry.
Y - fitted(model)
Is there any way to get residuals from models fit using lm_robust() ?