ch9.08.do open
file:script:do
| # | content |
|---|---|
| 1 [+] | * itsp ch9.08 |
| 3 [+] | use firmstats2 , |
| 4 [+] | label var p50 "Median investment" |
| 5 [+] | label var beta_k "beta(lagged kstock)" |
| 7 [+] | textbarplot compname p50 , /// scheme(s2mono) name(fig9_2a,replace) |
| 9 [+] | textbarplot compname beta_k , /// scheme(s2mono) name(fig9_2d,replace) |
| 11 [+] | graph combine fig9_2a fig9_2d , |
* itsp ch9.08
use firmstats2, clear
label var p50 "Median investment"
label var beta_k "beta(lagged kstock)"
textbarplot compname p50, ///
scheme(s2mono) name(fig9_2a,replace)
textbarplot compname beta_k, recast(dot) xline(0) ///
scheme(s2mono) name(fig9_2d,replace)
graph combine fig9_2a fig9_2d, col(2) ti("Firm statistics")