Data Dictionary: | FBI Crime Data 2018 |
Data Source: |
T3. | Violent and Property Crimes Reported (Rate per 100,000 Population) | |||||||
Universe: | ||||||||
T003_002 Violent Crimes Rate
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(T002_002) / Sum(FBI18_068_TOT_POP_0)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:FBI18_068_TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (SE:T004_001.IsNull)
oretval.IsNull = true;
else
oretval = SE:T004_001 / ORG:FBI18_068_TOT_POP_0 * 100000;
return oretval;
|