* Data Quality Checks: Type of Criminal Activity. get file='Directory\Path\00Offense.sav'. value labels crimact1 crimact2 crimact3 'B' 'Buying/Receiving' 'C' 'Cultivating' 'D' 'Distributing/Selling' 'E' 'Exploiting Children' 'O' 'Operating/Promoting' 'P' 'Possessing/Concealing' 'T' 'Transporting' 'U' 'Using/Consuming' 'J' 'Juvenile Gang' 'G' 'Other Gang' 'N' 'None/ Unk'. USE ALL. COMPUTE filter_$=(off_code = '250' | off_code= '280' | off_code= '35A' | off_code= '35B' | off_code= '39C' | off_code= '370' | off_code= '520' ). FORMAT filter_$ (f1.0). FILTER BY filter_$. EXECUTE . FREQUENCIES VARIABLES=crimact1 /ORDER= ANALYSIS . USE ALL. COMPUTE filter_$=(off_code = '09A' | off_code= '09B' | off_code= '100' | off_code= '120' | off_code= '11A' | off_code= '11B' | off_code= '11C' | off_code= '11D' | off_code= '13A' | off_code= '13B' | off_code= '13C'). FORMAT filter_$ (f1.0). FILTER BY filter_$. EXECUTE . FREQUENCIES VARIABLES=crimact1 /ORDER= ANALYSIS .