/* Replication Program: Green, Strolovitch, and Wong (in press) "Defended Neighborhoods, Integration, and Racially Motivated Crime" American Journal of Sociology supplementary regression analyses: Per Capita hate crime rates */ print " @------------------------------------------------@ @ analyse PER CAPITA rates of hate crime (1000s) @ @ Asian victims: white or unknown offenders @ @------------------------------------------------@"; dep1 = { newa_pc }; ind1 = { pw80,chngasn,xasn }; call ols("temp",dep1,ind1); print " @------------------------------------------------@ @ analyse PER CAPITA rates of hate crime (1000s) @ @ Latino victims: white or unknown offenders @ @------------------------------------------------@"; dep1 = { newl_pc }; ind1 = { pw80,chnghsp,xhsp }; call ols("temp",dep1,ind1); print " @------------------------------------------------@ @ analyse PER CAPITA rates of hate crime (1000s) @ @ Black victims: white or unknown offenders @ @------------------------------------------------@"; dep1 = { newb_pc }; ind1 = { pw80,chngblk,xblk }; call ols("temp",dep1,ind1);