Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Beta regression problem

    Hi, I am using panel data for 27 different countries in 5 different time periods. My IV and DV both are in fractional form (0,1), i.e., percentages.
    Please guide me, if beta regression is appropriate or I should go with a fixed-effect model, as the T is 5?
    If I use beta regression, how can I get country-fixed effects?

    Thanks for the help in advance.

  • #2
    Linear fixed effects model is appropriate in this situation so this is where you should start.

    For nonlinear variations, look at this thread here: https://www.statalist.org/forums/for...-fixed-effects

    Beta regression is appropriate in principle for your case, but I do not know how fixed effects work with a beta regression, if they work at all.

    Comment


    • #3
      Originally posted by Joro Kolev View Post
      Linear fixed effects model is appropriate in this situation so this is where you should start.

      For nonlinear variations, look at this thread here: https://www.statalist.org/forums/for...-fixed-effects

      Beta regression is appropriate in principle for your case, but I do not know how fixed effects work with a beta regression, if they work at all.
      I am sorry, I am not very technical at the concepts of economics. So, by linear fixed effects, you mean xtreg, fe? right?

      Comment


      • #4
        Yes, linear fixed effects model with country fixed effects would be either
        Code:
        xtset country
        xtreg y x, fe
        or directly

        Code:
        areg y x, absorb(country)
        Originally posted by Muhammad Abid Shahzad View Post

        I am sorry, I am not very technical at the concepts of economics. So, by linear fixed effects, you mean xtreg, fe? right?

        Comment

        Working...
        X