Data Dictionary: | UCR Crime Data 2012 |
Data Source: | Social Explorer, Interuniversity Consortium for Political and Social Research (ICPSR) and U.S. U.S. Census Bureau |
T11. | Violent and Property Crimes Arrests (Rate per 100,000 Population) | |||||||
Universe: Total Violent and Property Crime Rate | ||||||||
T009_001Total Violent and Property Crime Arrests Rate:
Percent base:
None - percentages not computed
Aggregation method:
Rate: (Sum(UCR2012_001_P1TOT_1) / Sum(UCR2012_001_TOT_POP)) * 100000
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:UCR2012_001_TOT_POP == 0)
oretval.IsNull = true;
else if (ORG:UCR2012_001_P1TOT_1.IsNull)
oretval.IsNull = true;
else
oretval = System.Convert.ToDouble(ORG:UCR2012_001_P1TOT_1) / System.Convert.ToDouble(ORG:UCR2012_001_TOT_POP) * 100000;
return oretval;
|