Dear all,
I have what should be an easy question, yet I have not so far managed to solve it:
I want to compute and use in regressions quarter-on-quarter or year-on-year growth rates, but I am unsure whether to do this with
or with
The latter yields a more sensible mean, but yields a bit over 5% of values < -100% which does not seem sensible to me economically.
Which would you use, and if the latter would you winsorize or trim, and at exactly -100% or at P5?
Thank you so much!
PM
I have what should be an easy question, yet I have not so far managed to solve it:
I want to compute and use in regressions quarter-on-quarter or year-on-year growth rates, but I am unsure whether to do this with
Code:
gen growth = 100*D.volume/L.volume
Code:
gen ln = ln(volume) gen growth2 = 100*D.ln
Which would you use, and if the latter would you winsorize or trim, and at exactly -100% or at P5?
Thank you so much!
PM
Comment