Data Dictionary: | FBI Crime Data 2015 |
Data Source: | Social Explorer, Federal Bureau of Investigation and Census Bureau |
T5. | Violent Crimes Reported (Rate per 100,000 Population) | |||||||
Universe: Universe: | ||||||||
T005_001Total Violent Crimes Rate:
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(T004_001) / Sum(FBI15_068_TOT_POP_0)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:FBI15_068_TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (SE:T004_001.IsNull)
oretval.IsNull = true;
else
oretval = SE:T004_001 / ORG:FBI15_068_TOT_POP_0 * 100000;
return oretval;
|