** user=**** ** password=**** ** package=spss ** project=les set printback=listing . * SWITZERLAND LES 1997 : SPSS Example CAMSIS matching to CH 97 data. get file= ch97e . * Current occ unit (isco88's)=fj04. * (incomplete) Employment status info from fj02 only. compute empst=fj02. recode empst (1,2=2) (3=6) (4=5) (5=1) (else=0) . add value labels empst 0 "Status unknown" 1 "Self-employed (all)" 2 "Self-Employed (principals)" 5 "Family Assistant" 6 "Employee". variable label empst "Employment status". cro empst by db02. * Key indexing variable is isco88 by empst. compute isco88=-999. if (fj04 > 0 ) isco88=fj04 . temp. select if (fj04 > 0). means tables=isco88 by empst . sort cases by isco88 empst. sav out= cstemp . get file="u:/camsis/csches97.sav" . descriptives var=all. sort cases by isco88 empst. match files table=* /in=csocc /file=cstemp /in=source /by=isco88 empst. fre var=csocc source. cro csocc by source. select if (source=1). * (this removes those isco88 empst values which are not * represented in the LES sample). cro source by db02. * Current values are within gender. * also can make a cross-gender CAMSIS variable : . compute cgentcs=-999. if (db02=1) cgentcs=mcam . if (db02=2) cgentcs=fcam . descriptives var=isco88 empst cgentcs siops isei . temp. select if (fj04 > 0). descriptives var=isco88 empst cgentcs siops isei . * theres about 120 cases here who have occs but no camsis score. temp. select if (fj04 > 0 & siops > 0). descriptives var=isco88 empst cgentcs siops isei . * a couple more cases have occs and camsis * but missing siops scores by the ISMF translation. * Quick assessment: compare by a country specific education recode. compute educ=et01 . recode educ (0,1=1) (2,3,4=2) (5,6,7,8=3) . add value label educ 1 "Primary or less" 2 "Intermediate" 3 "High or Degree level ". variable label educ "education categories". fre var= educ . * note that for Switz this data if for the head of household, * not necessarily the individual ; temp. select if (fj04 > 0 & educ > 0). descriptives var= educ cgentcs siops isei . temp. select if (fj04 > 0 & siops > 0 & db02=1 & educ > 0). means tables= cgentcs siops isei by educ /statistics=anova. temp. select if (fj04 > 0 & siops > 0 & db02=2 & educ > 0). means tables= cgentcs siops isei by educ /statistics=anova. /* For interest here are the Eta-squared statistics with education from above: Men: CAMSIS : 0.357 SIOPS : 0.315 ISEI: 0.355 Women: (Swiss note for F : values low because use hoh not indv) CAMSIS : 0.189 SIOPS : 0.150 ISEI: 0.073 */