** user=**** ** password=**** ** package=spss ** project=les set printback=listing . * Hungary LES 1993 : SPSS Example CAMSIS matching . get file= hu93e . * Current occ unit (isco88's)=fj04. compute isco88=-999 . if (fj04 >= 0 ) isco88=fj04 . * Employment status info from fj02 . compute empst=fj02. recode empst (1,2=1) (3,5=2) (else=0) . add value labels empst 0 "Unknown status" 1 "Self-employed" 2 "Employee" . variable label empst "Employment status". cro empst by db02. * Key indexing variables are isco88 and empst. sort cases by isco88 empst. temp. select if (fj04 > 0). means tables=isco88 by empst . sav out= cstemp . get file="u:/camsis/cshues93.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 by 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. temp. select if (fj04 > 0 & siops > 0). descriptives var= isco88 empst cgentcs siops isei . * a fair number of cases have isco values but don't get a * camsis score matched in, and a few more still lack siops / isei. * Quick assessment: compare values by an education recode. compute educ=et01. recode educ (1, 2=1) (3=2) (4,5,6,7=3) (else=-9) . add value labels educ 1 "Primary or less" 2 "Vocational" 3 "High or Degree level ". variable label educ "education categories". fre var= educ . temp. select if (fj04 > 0). descriptives var= educ cgentcs siops isei . temp. select if (fj04 > 0 & siops > 0 & db02=1). means tables= cgentcs siops isei by educ /statistics=anova. temp. select if (fj04 > 0 & siops > 0 & db02=2). means tables= cgentcs siops isei by educ /statistics=anova. /* For interest here are the Eta-squared statistics with education from above: Men: CAMSIS : 0.328 SIOPS : 0.279 ISEI: 0.338 Women: CAMSIS : 0.437 SIOPS : 0.447 ISEI: 0.451 */