Data Dictionary: | FBI Crime Data 2010 |
Data Source: | Social Explorer, Federal Bureau of Investigation and Census Bureau |
T11. | Total Number of Hate Crime Reported (Rate per 100,000 Population): | |||||||
Universe: | ||||||||
T010_006 Anti-Gender and Anti-Gender Rate:
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(FBI10_075_T5) / Sum(FBI10_068_TOT_POP_0)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( PE:FBI10_068_TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (CD:FBI10_075_T5.IsNull)
oretval.IsNull = true;
else
oretval = CD:FBI10_075_T5 / PE:FBI10_068_TOT_POP_0 * 100000;
return oretval;
|