Announcement

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

  • Estimating Earnings Persistence

    Dear Stata experts,

    For my thesis, I investigate earnings persistence by the following model:
    Click image for larger version

Name:	Schermafbeelding 2022-05-10 om 15.13.53.png
Views:	1
Size:	14.4 KB
ID:	1663822


    where alpha1 measures the earnings persistence.

    I have the data on the earnings and outstanding stocks. Is there a Stata command to estimate the alpha1 and subsequently use this estimation as a variable?

    Thank you in advance!
    Last edited by Laura Westhof; 10 May 2022, 07:24.

  • #2
    You need to create the defined variable:

    Code:
    gen y= earnings/outstanding_stocks
    xtset firm_id year
    regress y L.y, cluster(firm)

    \(\widehat{\alpha}_1\) is the estimated coefficient on L.y.

    Comment


    • #3
      Thank you Andrew Musau for your quick response!

      Your explanation is very clear. I have a follow-up question: How can I use this estimation of alpha 1 as a dependent variable? Because I would like to measure the effect of the independent variable on earnings persistence.

      Comment


      • #4
        \(\widehat{\alpha}_1\) is a coefficient. Even if you include it as a variable, it is a constant. You should talk to your supervisor/ colleague who is familiar with what you are doing. Perhaps they want you to estimate a coefficient for each firm and then use the estimated coefficients as a dependent variable in a cross-sectional regression. I am only speculating here.
        Last edited by Andrew Musau; 10 May 2022, 14:29.

        Comment


        • #5
          I will do that. Thank you for your response!

          Comment

          Working...
          X