This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Can I conduct likelihood ratio test with robust linear regression?

I'm using robust linear regression in R (the rlm function). I'm wondering if I can conduct a likelihood-ratio test after running the nested and full model. I wanted to test if c1+c2+c3 combined improves the fit of the model. Can anyone answer from a statistical perspective? mod_nest=rlm(y~x,data=dat,maxit=200) mod_full=rlm(y~x+c1+c2+c3,data=dat,maxit=200) lrtest(mod_nest,mod_full)

statistics robust linear regression

Have you tried running the OLS model on the same data and running the same tests? What type of result do you get? LR test compares two tests in general, why couldn't you compare your RLS models?

0 answers

No answers yet.

Log in to answer this question.