Hello,
I'm working on the impact of some variables on the earnings management. So, in order to calculate earnings management, we use generally in the literature some proxies like discretionary accruals. The most used models to detect the discretionary accruals are the jones model, the modified jones model and last but not least the Kothari model.
The general idea behind these models is to regress a dependent variable (Total Accruals) on some independent variables (according to the model)
For example : the equation of Jones model : TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 (ΔREVit/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
TAC: Total accruals; Rev: revenues; PPE: proporty plant and equipment
You just need to predict the residuals to get the discretionary accruals . Using Stata I typed: predict residuals, resid
My data : 38 firms/ 6years (2012-2017) (228 observation)
Giving the results I had, my issues are:
1- I have lower R-sq? How Can I explain that? (even a lot of researchers had lower R-sq too)
2- I didn't keep the constant in my models, do u think that it's the main cause why my R-sq are low?
3- How Can I choose the best model for my main analysis (the impact of firm size, board of directors....on constraining earnings management)?
4- As most of my varaibles in my equations are based on euro values, do you think that I should winsorize them? if so How can I do it?
5- Any advice and suggestions will be greatly appreciated cauz I'm really lost
Thank you so much
Guest.
Jones Model(1991) : TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 (ΔREVit/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
Note that : Part1 , part 2 part 3 are the parts of the right side of the equation
Modified Jones Model TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 ((ΔREVit-ΔRECit)/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
The results
The KOTHARI et al. (2005) Model TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 ((ΔREVit-ΔRECit)/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ROAit+ԑit
The results
Descriptive Statistics
I'm working on the impact of some variables on the earnings management. So, in order to calculate earnings management, we use generally in the literature some proxies like discretionary accruals. The most used models to detect the discretionary accruals are the jones model, the modified jones model and last but not least the Kothari model.
The general idea behind these models is to regress a dependent variable (Total Accruals) on some independent variables (according to the model)
For example : the equation of Jones model : TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 (ΔREVit/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
TAC: Total accruals; Rev: revenues; PPE: proporty plant and equipment
You just need to predict the residuals to get the discretionary accruals . Using Stata I typed: predict residuals, resid
My data : 38 firms/ 6years (2012-2017) (228 observation)
Giving the results I had, my issues are:
1- I have lower R-sq? How Can I explain that? (even a lot of researchers had lower R-sq too)
2- I didn't keep the constant in my models, do u think that it's the main cause why my R-sq are low?
3- How Can I choose the best model for my main analysis (the impact of firm size, board of directors....on constraining earnings management)?
4- As most of my varaibles in my equations are based on euro values, do you think that I should winsorize them? if so How can I do it?
5- Any advice and suggestions will be greatly appreciated cauz I'm really lost
Thank you so much
Guest.
Jones Model(1991) : TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 (ΔREVit/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
Code:
reg TOTAL_ACCR PART1 PART2 PART3, noconstant
Note that : Part1 , part 2 part 3 are the parts of the right side of the equation
The results
Code:
Source | SS df MS Number of obs = 228 -------------+---------------------------------- F(3, 225) = 12.83 Model | .384540939 3 .128180313 Prob > F = 0.0000 Residual | 2.2473704 225 .009988313 R-squared = 0.1461 -------------+---------------------------------- Adj R-squared = 0.1347 Total | 2.63191134 228 .011543471 Root MSE = .09994 ------------------------------------------------------------------------------ TOTAL_ACCR | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- PART1 | 2161441 2273761 0.95 0.343 -2319149 6642030 PART2 | .0507552 .0416235 1.22 0.224 -.0312665 .1327769 PART3 | -.0610047 .0100617 -6.06 0.000 -.0808319 -.0411776
Code:
. gen DISC_JONES=.
Code:
. predict r, resid . replace DISC_JONES=r . drop r
Modified Jones Model TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 ((ΔREVit-ΔRECit)/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ԑit
Code:
reg TOTAL_ACCR PART1 PART4 PART3, noconstant
Code:
Source | SS df MS Number of obs = 228 -------------+---------------------------------- F(3, 225) = 13.36 Model | .397857291 3 .132619097 Prob > F = 0.0000 Residual | 2.23405405 225 .009929129 R-squared = 0.1512 -------------+---------------------------------- Adj R-squared = 0.1398 Total | 2.63191134 228 .011543471 Root MSE = .09965 ------------------------------------------------------------------------------ TOTAL_ACCR | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- PART1 | 2955591 2223533 1.33 0.185 -1426022 7337204 PART4 | -.0889794 .0528283 -1.68 0.094 -.1930809 .0151221 PART3 | -.0593695 .0100473 -5.91 0.000 -.0791683 -.0395706
Code:
. gen DISC_MODIJONES=. . predict r, resid . replace DISC_MODIJONES=r . drop r
The KOTHARI et al. (2005) Model TACit/Ai,t-1 = β0 (1/Ai,t-1) + β1 ((ΔREVit-ΔRECit)/Ai,t-1) + β2 (PPEit/Ai,t-1)+ ROAit+ԑit
Code:
reg TOTAL_ACCR PART1 PART4 PART3 Lag_ROA, noconstant
The results
Code:
Source | SS df MS Number of obs = 228 -------------+---------------------------------- F(4, 224) = 10.57 Model | .417983552 4 .104495888 Prob > F = 0.0000 Residual | 2.21392779 224 .009883606 R-squared = 0.1588 -------------+---------------------------------- Adj R-squared = 0.1438 Total | 2.63191134 228 .011543471 Root MSE = .09942 ------------------------------------------------------------------------------ TOTAL_ACCR | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- PART1 | 1977862 2321827 0.85 0.395 -2597556 6553280 PART4 | -.0907816 .0527222 -1.72 0.086 -.1946765 .0131133 PART3 | -.0689246 .0120549 -5.72 0.000 -.0926803 -.045169 Lag_ROA | .1230123 .0862035 1.43 0.155 -.0468612 .2928858 ------------------------------------------------------------------------------
Code:
. gen DISC_KOTHARI=. . predict r, resid . replace DISC_KOTHARI=r . drop r
Code:
sum DISC_JONES DISC_MODIJONES DISC_KOTHARI
Code:
Variable | Obs Mean Std. Dev. Min Max -------------+--------------------------------------------------------- DISC_JONES | 228 -.0004002 .0994995 -.3131552 .3108965 DISC_MODIJ~S | 228 .0002508 .0992048 -.3286133 .326021 DISC_KOTHARI | 228 -.0010197 .0987519 -.3607893 .294788
Comment