Dear George Ford
Treatment, as you rightly guessed is a law that got enacted in 2017 (strengthening the creditor rights). However, the outcome variable which I plotted is a book measure, leverage, defined as total debt/total assets. The treatment dummy is an artificial one that I created based on asset size classification. To reduce the transition of firms I considered total assets of firms till 2015 only, to rule any information-based changes induced by firms in the year 2016. So I classified firm-years into treatment if their assets fall in the bottom tercile and control in the top tercile based on the assets till 2016. Hence a firm that fall in the bottom tercile will be treated ones in post reform period also even if its assets got reduced drastically.
-------------------------------------------------------------------------------
Do I make sense?
Treatment, as you rightly guessed is a law that got enacted in 2017 (strengthening the creditor rights). However, the outcome variable which I plotted is a book measure, leverage, defined as total debt/total assets. The treatment dummy is an artificial one that I created based on asset size classification. To reduce the transition of firms I considered total assets of firms till 2015 only, to rule any information-based changes induced by firms in the year 2016. So I classified firm-years into treatment if their assets fall in the bottom tercile and control in the top tercile based on the assets till 2016. Hence a firm that fall in the bottom tercile will be treated ones in post reform period also even if its assets got reduced drastically.
Code:
bysort co_code (year): egen mean_tang=mean( nppe_ta_w) if inrange(year,2011,2015) //nppe_ta_w is the proxy for tangibility bysort co_code (year): egen max_mean_tang=max( mean_tang ) xtile tercile=max_mean_tang, nq(3) gen treat=1 if tercile==3 replace treat=0 if tercile==1 univar nppe_ta_w,by(treat) univar nppe_ta_w,by(treat) -> treat=0 -------------- Quantiles -------------- Variable n Mean S.D. Min .25 Mdn .75 Max ------------------------------------------------------------------------------- nppe_ta_w 3300 0.08 0.07 0.00 0.02 0.06 0.11 0.76 ------------------------------------------------------------------------------- -> treat=1 -------------- Quantiles -------------- Variable n Mean S.D. Min .25 Mdn .75 Max ------------------------------------------------------------------------------- nppe_ta_w 3299 0.47 0.15 0.00 0.37 0.46 0.56 0.79 ------------------------------------------------------------------------------- -> treat=. -------------- Quantiles -------------- Variable n Mean S.D. Min .25 Mdn .75 Max ------------------------------------------------------------------------------- nppe_ta_w 4557 0.25 0.14 0.00 0.17 0.24 0.32 0.79
Do I make sense?
Comment