****************************************************************************************** *******************BIBB/BAuA Erwerbstätigenbefragung 2012********************************* ****************Bilden der Variable für die CASMIN**************************************** ************(Comparative Analysis of Social Mobility in Industrial Nations)*************** ****************************************************************************************** ****************************************************************************************** * Herkunft: BIBB-FDZ PASW Statistics 18 Quelle: Brauns, H., und Steinmann, S., (1997): Educational reform in France, West-Germany, the United Kingdom and Hungary: updating the CASMIN educational classification. Mannheimer Zentrum für Europäische Sozialforschung. ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen //Max1202=Höchster Ausbildungsabschluss - bereinigt; S3=Höchster Schulabschluss. compute h_uni=$SYSMIS. if F1202_korr=4 | G1202_korr=4 | H1202_korr=4 | I1202_korr=4 | J1202_korr=4 h_uni=1 . if F1202_korr=3 | G1202_korr=3 | H1202_korr=3 | I1202_korr=3 | J1202_korr=3 h_uni=0. if missing (h_uni) & (Max1202=4) h_uni=3. VALUE LABELS h_uni 0"FH" 1"uni". VARIABLE LABELS h_uni 'uni'. compute maxbild5=$SYSMIS. if S3=12 | S3=1 maxbild5=1. if S3=2 | S3=3 | S3 =4 maxbild5=2. if S3=5 | S3=6 maxbild5=3. if S3=7 | S3=8 | S3=9 maxbild5=4 . if S3>=10 maxbild5=5. compute Casmin=$SYSMIS. if Max1202 =1 & maxbild5 =1 Casmin=1. if maxbild5 =2 & Max1202 =1 Casmin=2. if maxbild5 =2 & Max1202 =2 | maxbild5 =2 & Max1202 =3 Casmin=3. if maxbild5 =3 & Max1202 =2 | maxbild5 =3 & Max1202 =3 Casmin=5 . if maxbild5 =3 & Max1202 =1 Casmin=4. if maxbild5 =4 & Max1202 =1 Casmin=6. if maxbild5 =4 & Max1202 =2 | maxbild5 =4 & Max1202 =3 Casmin=7 . if h_uni =0 | maxbild5 =4 & h_uni =3 Casmin=8. if h_uni =1 Casmin=9. if maxbild5 =5 | Max1202 =9 Casmin=-4. if missing (Casmin) Casmin=-3. ****************************************************************************************** **************Labeln der Variablen. VALUE LABELS Casmin -9 "keine Angabe" -8 "weiß nicht" -7 "trifft nicht zu" -6 "ungültig" -5 "verweigert" -4 "nicht zuordenbar" -3 "Kombination gibt es in CASMIN nicht" -1 "Filter" 1 "1a_gen Inadequately completed general education/kein Abschluss" 2 "1b_gen General elementary education/Hauptschulabschluss ohne berufl. Ausbildung" 3 "1c_voc Basic vocational qualification /Hauptschulabschluss mit berufl. Ausbildung" 5 "2a_voc Intermediate vocational qualification/mittlere Reife mit berufl. Ausbildung" 4 "2b_gen Intermediate general qualification/mittlere Reife ohne berufl. Ausbildung" 6 "2c_gen Full maturity certificates general/Fachhochschulreife|Abi ohne berufl. Ausbildung" 7 "2c_voc Full maturity certificates vocational/Fachhochschulreife|Abi mit berufl. Ausbildung" 8 "3a Lower tertiary education/Fachhochschulabschluss" 9 "3b Higher tertiary education/Hochschulabschluss". VARIABLE LABELS Casmin "CASMIN". formats Casmin (f5.0). EXECUTE. DELETE VARIABLES h_uni maxbild5 . execute. **********************************************************************************************************************************