*** MODULE 4 SPSS SYNTAX FOR REFERENCE . *** Information that follows *** for explanation purposes only. *** Page 4 of 10 . *** Recode WBURGL - How worried about your home broken into? so that values 1 and 2 = 1 (Worried) and 3 and 4 = 2 (Not worried). All other values set to missing . recode wburgl (1 thru 2=1) (3 thru 4=2) (else=sysmis) into zwburgl . var lab zwburgl 'Recoded burglary fear' . val lab zwburgl 1 'Worried' 2 'Not worried' . *** Page 5 of 10 . *** Recode CJSMAIN - Main source of information about justice system? so that value 1 = 1 (Broadhseet), value 2 = 2 (Tabloid). All other values set to missing . recode cjsmain (1=1) (2=2) (else=sysmis) into zcjsmain . var lab zcjsmain 'Tabloid Newspaper readership' . val lab zcjsmain 1 'Broadsheet' 2 'Tabloid' . *** Page 6 of 10 . *** Run crosstab Recoded burglary fear by Tabloid Newspaper readership . crosstabs /TABLES=zwburgl by zcjsmain /FORMAT= AVALUE TABLES /CELLS= COUNT . *** Page 7 of 10 . *** Run same crosstab, this time with column percentages . crosstabs /TABLES=zwburgl BY zcjsmain /FORMAT= AVALUE TABLES /CELLS= COUNT COLUMN . *** Page 8 of 10 . *** Run crosstab WBURGL - How worried about your home broken into? by TOTHHINC - Household income. Display column percentages and Phi and Cramer's V statistic . crosstabs /TABLES=wburgl BY tothhinc /FORMAT= AVALUE TABLES /STATISTIC=PHI /CELLS= COUNT COLUMN .