* Robberies by Location. GET FILE='Directory\Path\Incident 1999.sav'. SELECT IF (rob ge 1). SAVE OUTFILE='Directory\Path\Robbery 1999.sav'. GET FILE='Directory\Path\Robbery 1999.sav'. RECODE inc_loc (13,18 = 1) (2,3,5,8,9,12,14,17,21 = 2) (20 = 3) (7,23,24 = 4) (else = 5)into location. VARIABLE LABELS location 'Type of location'. VALUE LABELS location 1 'Road/Highway/Parking Garage' 2 'Commercial' 3 'Residences' 4 'Service/Conv Store' 5 'Other'. TEMPORARY. VARIABLE LABELS location ' '. GRAPH /BAR(SIMPLE)=PCT BY location /MISSING=REPORT /TEMPLATE='Directory\Path\Table8 template.sct' /TITLE= 'Robberies by Location'.