Home > Software engineering >  Interpretation of a binary regression plot
Interpretation of a binary regression plot

Time:05-02

I'm new to R and I created an avplot of a linear binary regression. I was wondering how do I interpret the regression residuals in the corner like that?

Would you say it follows a heteroskedastic pattern?

Thanks!

Note: My binary formatting is Sex: Male (0), Female (1), Employment: Employed (1), unemployed (0)

CodePudding user response:

Linear probability models follow a heteroskedastic pattern by construction. You'll have to use robust standard errors.

  •  Tags:  
  • r
  • Related