| |
| |
| |
|
|
| |
| degv_yg = lm(degree_violence ~ identity_protesters + tactic , data=us_survey_wave1, weights=weight) |
| police_yg = lm(police_action_required ~ identity_protesters + tactic , data=us_survey_wave1, weights=weight) |
| recall_violence_yg = lm(recall_violence2 ~ identity_protesters + tactic , data=us_survey_wave1, weights=weight) |
| approve_protest_yg = lm(approve_protest_scale ~ identity_protesters + tactic , data=us_survey_wave1, weights=weight) |
| stargazer(degv_yg, recall_violence_yg, police_yg, |
| covariate.labels = c("Black protesters", "Shut down traffic", |
| "Destroy police cars", "Intercept: White protesters, March in streets"), |
| out = "Tables/table_1_panel_A.tex") |
|
|
| |
| degv_isr = lm(degree_violence ~ identity_protesters + tactic , data=isr_survey_wave1, weights=weight) |
| police_isr = lm(police_action_required ~ identity_protesters + tactic , data=isr_survey_wave1, weights=weight) |
| recall_violence_isr = lm(recall_violence2 ~ identity_protesters + tactic , data=isr_survey_wave1, weights=weight) |
| approve_protest_isr = lm(approve_protest_scale ~ identity_protesters + tactic , data=isr_survey_wave1, weights=weight) |
| stargazer(degv_isr, recall_violence_isr, police_isr, |
| covariate.labels = c("Ethiopian protesters", "Arab protesters", |
| "Shut down traffic", "Destroy garbage cans", |
| "Intercept: White protesters, March in streets"), |
| out = "Tables/table_1_panel_B.tex") |
|
|