zip, zinb or hurdle (dhreg, xtdhreg)? or nbreg? or should I just add a constant to zero values and go with xtpoisson?
treament var could be binary (did = treated # post17)
or could be interacted with a stadardized var as treat17#zscore1 (DDD)
The depvar is:
Graph.gph
or if depvar is taken as proportion of county population.
treament var could be binary (did = treated # post17)
Code:
. fre treat17 treat17 ----------------------------------------------------------- | Freq. Percent Valid Cum. --------------+-------------------------------------------- Valid 0 | 7633 99.45 99.45 99.45 1 | 42 0.55 0.55 100.00 Total | 7675 100.00 100.00 -----------------------------------------------------------
Code:
. sum zscore1 Variable | Obs Mean Std. dev. Min Max -------------+--------------------------------------------------------- zscore1 | 7,675 .0131534 .6424957 -.3452138 10.56285
Code:
. xtset countyfips year Panel variable: countyfips (unbalanced) Time variable: year, 2010 to 2019 Delta: 1 unit
Code:
. . sum mdstot Variable | Obs Mean Std. dev. Min Max -------------+--------------------------------------------------------- mdstot | 24,518 275.0965 1084.201 0 22991
or if depvar is taken as proportion of county population.
Code:
. sum mdstotprop Variable | Obs Mean Std. dev. Min Max -------------+--------------------------------------------------------- mdstotprop | 7,675 .1285506 .1763522 0 3.982446
Comment