Data Dictionary: | FBI Crime Data 2017 |
Data Source: |
T5. | Violent Crimes Reported (Rate per 100,000 Population) | |||||||
Universe: Universe: | ||||||||
T005_004 Rape Legacy Definition Rate
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(FBI17_013_T4) / Sum(FBI17_068_SE_T001_001)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:FBI17_068_SE_T001_001 == 0)
oretval.IsNull = true;
else
if (ORG:FBI17_013_T4.IsNull)
oretval.IsNull = true;
else
oretval = ORG:FBI17_013_T4 / ORG:FBI17_068_SE_T001_001 * 100000;
return oretval;
|