Data Dictionary: | FBI Crime Data 2019 |
Data Source: |
T7. | Property Crimes Reported (Rate per 100,000 Population) | |||||||
Universe: Universe: | ||||||||
T007_002 Burglaries Rate
Percent base:
None - percentages not computed
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:TOT_POP_0 == 0)
oretval.IsNull = true;
else
if (ORG:T8.IsNull)
oretval.IsNull = true;
else
oretval = ORG:T8 / ORG:TOT_POP_0 * 100000;
return oretval;
|