Data Dictionary: | FBI Crime Data 2018 |
Data Source: |
T5. | Violent Crimes Reported (Rate per 100,000 Population) | |||||||
Universe: Universe: | ||||||||
T005_002 Murders and Nonnegligent Manslaughters Rate
Percent base:
None - percentages not computed
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:FBI18_068_TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (ORG:FBI18_013_T2.IsNull)
oretval.IsNull = true;
else
oretval = ORG:FBI18_013_T2 / ORG:FBI18_068_TOT_POP_0 * 100000;
return oretval;
|