Data Dictionary: | FBI Crime Data 2016 |
Data Source: |
T11. | Total Number of Hate Crime Reported (Rate per 100,000 Population): | |||||||
Universe: | ||||||||
T011_001Total Number of Hate Crime Reported (Rate per 100,000 Population):
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(T010_001) / Sum(FBI16_068_TOT_POP_0)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:FBI16_068_TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (SE:T010_001.IsNull)
oretval.IsNull = true;
else
oretval = SE:T010_001 / ORG:FBI16_068_TOT_POP_0 * 100000;
return oretval;
|