File size: 18,079 Bytes
4328c38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
**********************************************************************
*** FIGURE A7
*** Impact of Trump Rallies on the Relative Probability of Stop With Respect to Whites: Event-study Results
**********************************************************************
use "Data\stoplevel_data.dta", clear
g n_stops = 1
foreach var of varlist black hispanic white api {
replace `var' = `var'/100
}
collapse (first) year dist* (sum) n_stops black hispanic white api, by(county_fips day_id subject_race)
g stops = black + hispanic + white + api
drop n_stops
bysort day_id county_fips: egen n_stops = total(stops)
drop if subject_race == 4
g prob_stop_race = black / n_stops if subject_race == 2
replace prob_stop_race = hispanic / n_stops if subject_race == 3
replace prob_stop_race = api / n_stops if subject_race == 1
rename black black_stops
rename hispanic hispanic_stop
rename api asian_stop
g black = (subject_race == 2)
g hispanic = (subject_race == 3)
g asian = (subject_race == 1)
local start = -105
local end = 105
local bin_l = 15
g TRUMP_0 = 0
forval ii = 1/9 {
replace TRUMP_0 = 1 if dist_event`ii' == 0
}
forval ii = 1(`bin_l')`end'{
local jj = `ii' + `bin_l' - 1
g TRUMP_POST_`ii'_`jj' = 0
forval ee = 1/9 {
replace TRUMP_POST_`ii'_`jj' = 1 if (dist_event`ee' >= `ii' & dist_event`ee'<=`jj' & dist_event`ee'!=.)
}
}
g TRUMP_POST_M`end' = 0
forval ii = 1/9 {
replace TRUMP_POST_M`end' = 1 if (dist_event`ii' > `end' & dist_event`ii'!=.)
}
*
forval ii = `start'(`bin_l')0 {
if `ii' < -`bin_l' {
local jj = abs(`ii')
local zz = `jj' - `bin_l' + 1
g TRUMP_PRE_`jj'_`zz' = 0
forval ee = 1/9 {
replace TRUMP_PRE_`jj'_`zz' = 1 if (dist_event`ee' <= -`zz' & dist_event`ee'>=-`jj' & dist_event`ee'!=.)
}
}
}
*
local jj = abs(`start')
g TRUMP_PRE_M`jj' = 0
forval ii = 1/9 {
replace TRUMP_PRE_M`jj' = 1 if (dist_event`ii' < `start' & dist_event`ii'!=.)
}
reghdfe prob_stop_race 1.TRUMP_PRE_* 1.TRUMP_0 1.TRUMP_POST_* 1.TRUMP_PRE_*#1.black 1.TRUMP_0#1.black 1.TRUMP_POST_*#1.black 1.TRUMP_PRE_*#1.asian 1.TRUMP_0#1.asian 1.TRUMP_POST_*#1.asian [w=n_stops], a(i.county_fips##i.black i.county_fips##i.asian i.day_id##i.black i.day_id##i.asian i.county_fips#c.day_id i.black#i.county_fips#c.day_id i.asian#i.county_fips#c.day_id) cluster(county_fips day_id )
local temp = 1/`bin_l'
local bin_neg = abs(`start' * `temp')
local bin_pos = `end' * `temp'
local range = round(`bin_neg' + `bin_pos' + 3)
mat treat = J(`range',10,1)
local Nrange = `range' - 2
forval pos = 1/`Nrange' {
local lag = `start' + `bin_l'*`pos' - `bin_l'
if `lag' > 0 {
local lag = `start' + `bin_l'*`pos' - `bin_l' - `bin_l' + 1
}
local num = abs(`lag')
if `lag' == 0 {
mat treat[`pos',1] = 0
mat treat[`pos',2] = _b[1.TRUMP_0]
mat treat[`pos',3] = _b[1.TRUMP_0] + _se[1.TRUMP_0]*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_0] - _se[1.TRUMP_0]*invttail(e(N),0.025)
lincom _b[1.TRUMP_0#1.black] + _b[1.TRUMP_0]
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_0#1.asian] + _b[1.TRUMP_0]
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
else if `lag' < -`bin_l' {
local num2 = `num' - `bin_l' + 1
local num1 = - `num'
mat treat[`pos',1] = `num1'
mat treat[`pos',2] = _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',3] = _b[1.TRUMP_PRE_`num'_`num2'] + _se[1.TRUMP_PRE_`num'_`num2']*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_PRE_`num'_`num2'] - _se[1.TRUMP_PRE_`num'_`num2']*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_`num'_`num2'#1.black] + _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_`num'_`num2'#1.asian] + _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
else if `lag' == -`bin_l' {
mat treat[`pos',1] = -`bin_l'
mat treat[`pos',2] = 0
mat treat[`pos',3] = 0
mat treat[`pos',4] = 0
mat treat[`pos',5] = 0
mat treat[`pos',6] = 0
mat treat[`pos',7] = 0
mat treat[`pos',8] = 0
mat treat[`pos',9] = 0
mat treat[`pos',10] = 0
}
else {
di "**"
di `lag'
di `pos'
local num2 = `num' + `bin_l' - 1
mat treat[`pos',1] = `num2'
mat treat[`pos',2] = _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',3] = _b[1.TRUMP_POST_`num'_`num2'] + _se[1.TRUMP_POST_`num'_`num2']*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_POST_`num'_`num2'] - _se[1.TRUMP_POST_`num'_`num2']*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_`num'_`num2'#1.black] + _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_`num'_`num2'#1.asian] + _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
}
mat treat[`range'-1,1] = `start' - `bin_l' - 1
mat treat[`range'-1,2] = _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,3] = _b[1.TRUMP_PRE_M`jj'] + _se[1.TRUMP_PRE_M`jj']*invttail(e(N),0.025)
mat treat[`range'-1,4] = _b[1.TRUMP_PRE_M`jj'] - _se[1.TRUMP_PRE_M`jj']*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_M`jj'#1.black] + _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,5] = r(estimate)
mat treat[`range'-1,6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range'-1,7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_M`jj'#1.asian] + _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,8] = r(estimate)
mat treat[`range'-1,9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range'-1,10] = r(estimate) - r(se)*invttail(e(N),0.025)
mat treat[`range',1] = `end' + `bin_l' + 1
mat treat[`range',2] = _b[1.TRUMP_POST_M`end']
mat treat[`range',3] = _b[1.TRUMP_POST_M`end'] + _se[1.TRUMP_POST_M`end']*invttail(e(N),0.025)
mat treat[`range',4] = _b[1.TRUMP_POST_M`end'] - _se[1.TRUMP_POST_M`end']*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_M`end'#1.black] + _b[1.TRUMP_POST_M`end']
mat treat[`range',5] = r(estimate)
mat treat[`range',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_M`end'#1.asian] + _b[1.TRUMP_POST_M`end']
mat treat[`range',8] = r(estimate)
mat treat[`range',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range',10] = r(estimate) - r(se)*invttail(e(N),0.025)
g yy = treat[_n,1] in 1/`range'
g eff_hisp = treat[_n,2] in 1/`range'
g eff_hisp_10 = treat[_n,3] in 1/`range'
g eff_hisp_90 = treat[_n,4] in 1/`range'
g eff_bl = treat[_n,5] in 1/`range'
g eff_bl_10 = treat[_n,6] in 1/`range'
g eff_bl_90 = treat[_n,7] in 1/`range'
g eff_as = treat[_n,8] in 1/`range'
g eff_as_10 = treat[_n,9] in 1/`range'
g eff_as_90 = treat[_n,10] in 1/`range'
sort yy
*keep if yy>`start'-1 & yy<`end'+1
duplicates drop yy, force
keep eff_* eff_*_10 eff_*_90 yy
twoway (rcap eff_hisp_10 eff_hisp_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(green) ) (scatter eff_hisp yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(green) msymbol(triangle)) (line eff_hisp yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(green) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on Hispanics") legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(hisp,replace)
graph export "Results\FigureA7A.pdf", as(pdf) replace
twoway (rcap eff_bl_10 eff_bl_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(blue)) (scatter eff_bl yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(blue)) (line eff_bl yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1, lc(blue) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on Blacks") xlabel(-105(15)105) legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(black,replace)
graph export "Results\FigureA7B.pdf", as(pdf) replace
twoway (rcap eff_as_10 eff_as_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(red)) (scatter eff_as yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(red)) (line eff_as yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1, lc(red) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on APIs") legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(asian,replace)
graph export "Results\FigureA7C.pdf", as(pdf) replace
****************************************************************************************************************************************
use "Data\stoplevel_data.dta", clear
g n_stops = 1
foreach var of varlist black hispanic white api {
replace `var' = `var'/100
}
collapse (first) year dist* (sum) n_stops black hispanic white api, by(county_fips day_id subject_race)
g stops = black + hispanic + white + api
drop n_stops
bysort day_id county_fips: egen n_stops = total(stops)
drop if subject_race == 4
g prob_stop_race = black / n_stops if subject_race == 2
replace prob_stop_race = hispanic / n_stops if subject_race == 3
replace prob_stop_race = api / n_stops if subject_race == 1
rename black black_stops
rename hispanic hispanic_stop
rename api asian_stop
g black = (subject_race == 2)
g hispanic = (subject_race == 3)
g asian = (subject_race == 1)
local start = -105
local end = 105
local bin_l = 15
g TRUMP_0 = 0
forval ii = 1/9 {
replace TRUMP_0 = 1 if dist_event`ii' == 0
}
forval ii = 1(`bin_l')`end'{
local jj = `ii' + `bin_l' - 1
g TRUMP_POST_`ii'_`jj' = 0
forval ee = 1/9 {
replace TRUMP_POST_`ii'_`jj' = 1 if (dist_event`ee' >= `ii' & dist_event`ee'<=`jj' & dist_event`ee'!=.)
}
}
g TRUMP_POST_M`end' = 0
forval ii = 1/9 {
replace TRUMP_POST_M`end' = 1 if (dist_event`ii' > `end' & dist_event`ii'!=.)
}
*
forval ii = `start'(`bin_l')0 {
if `ii' < -`bin_l' {
local jj = abs(`ii')
local zz = `jj' - `bin_l' + 1
g TRUMP_PRE_`jj'_`zz' = 0
forval ee = 1/9 {
replace TRUMP_PRE_`jj'_`zz' = 1 if (dist_event`ee' <= -`zz' & dist_event`ee'>=-`jj' & dist_event`ee'!=.)
}
}
}
*
local jj = abs(`start')
g TRUMP_PRE_M`jj' = 0
forval ii = 1/9 {
replace TRUMP_PRE_M`jj' = 1 if (dist_event`ii' < `start' & dist_event`ii'!=.)
}
reghdfe prob_stop_race 1.TRUMP_PRE_* 1.TRUMP_0 1.TRUMP_POST_* 1.TRUMP_PRE_*#1.black 1.TRUMP_0#1.black 1.TRUMP_POST_*#1.black 1.TRUMP_PRE_*#1.asian 1.TRUMP_0#1.asian 1.TRUMP_POST_*#1.asian [w=n_stops], a(i.county_fips##i.black i.county_fips##i.asian i.day_id##i.black i.day_id##i.asian) cluster(county_fips day_id)
local temp = 1/`bin_l'
local bin_neg = abs(`start' * `temp')
local bin_pos = `end' * `temp'
local range = round(`bin_neg' + `bin_pos' + 3)
mat treat = J(`range',10,1)
local Nrange = `range' - 2
forval pos = 1/`Nrange' {
local lag = `start' + `bin_l'*`pos' - `bin_l'
if `lag' > 0 {
local lag = `start' + `bin_l'*`pos' - `bin_l' - `bin_l' + 1
}
local num = abs(`lag')
if `lag' == 0 {
mat treat[`pos',1] = 0
mat treat[`pos',2] = _b[1.TRUMP_0]
mat treat[`pos',3] = _b[1.TRUMP_0] + _se[1.TRUMP_0]*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_0] - _se[1.TRUMP_0]*invttail(e(N),0.025)
lincom _b[1.TRUMP_0#1.black] + _b[1.TRUMP_0]
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_0#1.asian] + _b[1.TRUMP_0]
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
else if `lag' < -`bin_l' {
local num2 = `num' - `bin_l' + 1
local num1 = - `num'
mat treat[`pos',1] = `num1'
mat treat[`pos',2] = _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',3] = _b[1.TRUMP_PRE_`num'_`num2'] + _se[1.TRUMP_PRE_`num'_`num2']*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_PRE_`num'_`num2'] - _se[1.TRUMP_PRE_`num'_`num2']*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_`num'_`num2'#1.black] + _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_`num'_`num2'#1.asian] + _b[1.TRUMP_PRE_`num'_`num2']
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
else if `lag' == -`bin_l' {
mat treat[`pos',1] = -`bin_l'
mat treat[`pos',2] = 0
mat treat[`pos',3] = 0
mat treat[`pos',4] = 0
mat treat[`pos',5] = 0
mat treat[`pos',6] = 0
mat treat[`pos',7] = 0
mat treat[`pos',8] = 0
mat treat[`pos',9] = 0
mat treat[`pos',10] = 0
}
else {
di "**"
di `lag'
di `pos'
local num2 = `num' + `bin_l' - 1
mat treat[`pos',1] = `num2'
mat treat[`pos',2] = _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',3] = _b[1.TRUMP_POST_`num'_`num2'] + _se[1.TRUMP_POST_`num'_`num2']*invttail(e(N),0.025)
mat treat[`pos',4] = _b[1.TRUMP_POST_`num'_`num2'] - _se[1.TRUMP_POST_`num'_`num2']*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_`num'_`num2'#1.black] + _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',5] = r(estimate)
mat treat[`pos',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_`num'_`num2'#1.asian] + _b[1.TRUMP_POST_`num'_`num2']
mat treat[`pos',8] = r(estimate)
mat treat[`pos',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`pos',10] = r(estimate) - r(se)*invttail(e(N),0.025)
}
}
mat treat[`range'-1,1] = `start' - `bin_l' - 1
mat treat[`range'-1,2] = _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,3] = _b[1.TRUMP_PRE_M`jj'] + _se[1.TRUMP_PRE_M`jj']*invttail(e(N),0.025)
mat treat[`range'-1,4] = _b[1.TRUMP_PRE_M`jj'] - _se[1.TRUMP_PRE_M`jj']*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_M`jj'#1.black] + _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,5] = r(estimate)
mat treat[`range'-1,6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range'-1,7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_PRE_M`jj'#1.asian] + _b[1.TRUMP_PRE_M`jj']
mat treat[`range'-1,8] = r(estimate)
mat treat[`range'-1,9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range'-1,10] = r(estimate) - r(se)*invttail(e(N),0.025)
mat treat[`range',1] = `end' + `bin_l' + 1
mat treat[`range',2] = _b[1.TRUMP_POST_M`end']
mat treat[`range',3] = _b[1.TRUMP_POST_M`end'] + _se[1.TRUMP_POST_M`end']*invttail(e(N),0.025)
mat treat[`range',4] = _b[1.TRUMP_POST_M`end'] - _se[1.TRUMP_POST_M`end']*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_M`end'#1.black] + _b[1.TRUMP_POST_M`end']
mat treat[`range',5] = r(estimate)
mat treat[`range',6] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range',7] = r(estimate) - r(se)*invttail(e(N),0.025)
lincom _b[1.TRUMP_POST_M`end'#1.asian] + _b[1.TRUMP_POST_M`end']
mat treat[`range',8] = r(estimate)
mat treat[`range',9] = r(estimate) + r(se)*invttail(e(N),0.025)
mat treat[`range',10] = r(estimate) - r(se)*invttail(e(N),0.025)
g yy = treat[_n,1] in 1/`range'
g eff_hisp = treat[_n,2] in 1/`range'
g eff_hisp_10 = treat[_n,3] in 1/`range'
g eff_hisp_90 = treat[_n,4] in 1/`range'
g eff_bl = treat[_n,5] in 1/`range'
g eff_bl_10 = treat[_n,6] in 1/`range'
g eff_bl_90 = treat[_n,7] in 1/`range'
g eff_as = treat[_n,8] in 1/`range'
g eff_as_10 = treat[_n,9] in 1/`range'
g eff_as_90 = treat[_n,10] in 1/`range'
sort yy
*keep if yy>`start'-1 & yy<`end'+1
duplicates drop yy, force
keep eff_* eff_*_10 eff_*_90 yy
twoway (rcap eff_hisp_10 eff_hisp_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(green) ) (scatter eff_hisp yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(green) msymbol(triangle)) (line eff_hisp yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(green) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on Hispanics") legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(hisp,replace)
graph export "Results\FigureA7D.pdf", as(pdf) replace
twoway (rcap eff_bl_10 eff_bl_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(blue)) (scatter eff_bl yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(blue)) (line eff_bl yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1, lc(blue) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on Blacks") xlabel(-105(15)105) legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(black,replace)
graph export "Results\FigureA7E.pdf", as(pdf) replace
twoway (rcap eff_as_10 eff_as_90 yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,lc(red)) (scatter eff_as yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1,mc(red)) (line eff_as yy if yy>`start' - `bin_l' - 1 & yy<`end' + `bin_l' + 1, lc(red) xline(0,lp(-)) yline(0,lp(-))) , graphregion(fcolor(white)) xtitle("Days From Trump") ytitle("Effect on APIs") legend(off) xlabel(-105(15)105) ylabel(-0.01(0.005)0.025) saving(asian,replace)
graph export "Results\FigureA7F.pdf", as(pdf) replace
|