Data Dictionary: | UCR Crime Data 2013 |
Data Source: | Social Explorer, Interuniversity Consortium for Political and Social Research (ICPSR) and U.S. U.S. Census Bureau |
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(UCR2013_004_VIOL_4) / Sum(UCR2013_001_TOT_POP)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:UCR2013_001_TOT_POP == 0)
oretval.IsNull = true;
else if (ORG:UCR2013_004_VIOL_4.IsNull)
oretval.IsNull = true;
else
oretval = System.Convert.ToDouble(ORG:UCR2013_004_VIOL_4) / System.Convert.ToDouble(ORG:UCR2013_001_TOT_POP) * 100000;
return oretval;
|