*SPSS Download Code *Multiple Segment Analysis * *Juvenile Multiple Offender Research Question 4: * *What offenses are reported in juvenile multiple offender incidents in *which the most serious offense is a Part I Index property crime? *******************************************************************************. GET FILE = 'Directory:\Path\incident-level flat file.sav'. compute type_inc = 0. if (off_cnt = 1)type_inc = 1. if (off_cnt gt 1)type_inc = 2. value labels type_inc 1 'Single Offender' 2 'Multiple Offenders'. missing values type_inc (0). Compute INDEX = msioff. recode index (90 = 1)(110 = 2) (120 = 3) (130 = 4)(140 = 5)(160 thru 167 = 6)(150 = 7) (else = 8). value labels index 1 'Murder and Nonnegligent Manslaughter' 6 'Larceny' 7 'Motor Vehicle Theft' 3 'Robbery' 2 'Forcible Rape' 4 'Aggravated Assault' 5 'Burglary' 8 'All other offenses'. recode index (1 thru 4 = 1)(5 thru 7 = 2)(else = 3)into msoffgp. value labels msoffgp 1 'Person Offenses' 2 'Property Offenses' 3 'Other Offenses'. if (offadult ge 1 and off1017 = 0)juv_off = 0. if (off1017 ge 1 )juv_off = 1. variable labels juv_off ' Incident involved a juvenile offender'. value labels juv_off 1 'Juvenile offender(s)' 0 'Adult offender(s)'. TEMPORARY. SELECT IF (juv_off = 1 and type_inc = 2). SAVE OUTFILE = 'Directory:\Path\multjuv.sav'. MATCH FILES /TABLE=* /FILE='Directory:\Path\offense segment.sav' /BY ori inc_num. SELECT IF (juv_off = 1). recode off_code ('200' = 200) ('13A' = 130) ('13B' = 171) ('13C' = 172) ('510' = 510) ('220' = 140) ('250' = 250) ('290' = 290) ('35A' = 350) ('35B' = 351) ('270' = 270) ('210' = 210) ('26A' = 260) ('26B' = 261) ('26C' = 262) ('26D' = 263) ('26E' = 264) ('39A' = 390) ('39B' = 391) ('39C' = 392) ('39D' = 393) ('09A' = 90) ('09B' = 198) ('09C' = 199) ('100' = 190) ('23A' = 160) ('23B' = 161) ('23C' = 162) ('23D' = 163) ('23E' = 164) ('23F' = 165) ('23G' = 166) ('23H' = 167) ('240' = 150) ('370' = 370) ('40A' = 400) ('40B' = 401) ('120' = 120) ('11A' = 110) ('11B' = 180) ('11C' = 181) ('11D' = 182) ('36A' = 360) ('36B' = 361) ('280' = 280) ('520' = 520)into offense. value labels offense 200 'Arson' 130 'Aggravated Assault' 171 'Simple Assault' 172 'Intimidation' 510 'Bribery' 140 'Burglary/Breaking and Entering' 250 'Counterfeiting/Forgery' 290 'Destruction/Damage/Vandalism of Property' 350 'Drug/Narcotics Violations' 351 'Drug Equipment Violations' 270 'Embezzlement' 210 'Extortion/Blackmail' 260 'False Pretenses/Swindle/Confidence Game' 261 'Credit Card/Automated Teller Machine Fraud' 262 'Impersonation' 263 'Welfare Fraud' 264 'Wire Fraud' 390 'Betting/Wagering' 391 'Operating/Promoting/Assisting Gambling' 392 'Gambling Equipment Violations' 393 'Sports Tampering' 90 'Murder and Nonnegligent Manslaughter' 198 'Negligent Manslaughter' 199 'Justifiable Homicide' 190 'Kidnaping/Abduction' 160 'Pocket-picking' 161 'Purse-snatching' 162 'Shoplifting' 163 'Theft From Building' 164 'Theft From Coin-Operated Machine or Device' 165 'Theft From Motor Vehicle' 166 'Theft of Motor Vehicle Parts or Accessories' 167 'All Other Larceny' 150 'Motor Vehicle Theft' 370 'Pornography/Obscene Material' 400 'Prostitution' 401 'Assisting or Promoting Prostitution' 120 'Robbery' 110 'Forcible Rape' 180 'Forcible Sodomy' 181 'Sexual Assault With An Object' 182 'Forcible Fondling' 183 'Rape of a Male' 360 'Incest' 361 'Statutory Rape' 280 'Stolen Property Offenses' 520 'Weapon Law Violations'. SAVE OUTFILE = 'Directory:\Path\multjuv.sav'. GET FILE = 'Directory:\Path\multjuv.sav'. USE ALL. COMPUTE filter_$=(msoffgp = 2). VARIABLE LABEL filter_$ "Property Offenses (FILTER)". VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. FORMAT filter_$ (f1.0). FILTER BY filter_$. * Table of Frequencies. TEMPORARY. VARIABLE LABELS offense 'Offenses In Juvenile Multiple Offender Incidents Where A Property Offense Is The Most Serious Offense' . FREQUENCIES offense /format = dfreq.