****************************************************************************************** *******************BIBB/BAuA Erwerbstätigenbefragung 2018********************************* ****************Bilden der Variable für die CASMIN**************************************** ************(Comparative Analysis of Social Mobility in Industrial Nations)*************** ****************************************************************************************** ****************************************************************************************** /* Herkunft: BIBB-FDZ Stataversion: 15.0 MP 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ähe Sozialforschung. */ ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen //bereinigt max1202=Höchster Ausbildungsabschluss - bereinigt; S3=Höchster Schulabschluss gen maxbild5=. replace maxbild5=1 if S3==12 | S3==1 replace maxbild5=2 if S3==2 | S3==3 | S3==4 replace maxbild5=3 if S3==5 | S3==6 replace maxbild5=4 if S3==7 | S3==8 | S3==9 replace maxbild5=5 if S3==10 |S3==11 gen Casmin=. replace Casmin=1 if max1202==1 & maxbild5==1 replace Casmin=2 if maxbild5==2 & max1202==1 replace Casmin=3 if maxbild5==2 & max1202==2 | maxbild5==2 & max1202==3 replace Casmin=5 if maxbild5==3 & max1202==2 | maxbild5==3 & max1202==3 replace Casmin=4 if maxbild5==3 & max1202==1 replace Casmin=6 if maxbild5==4 & max1202==1 replace Casmin=7 if maxbild5==4 & max1202==2 | maxbild5==4 & max1202==3 replace Casmin=8 if max1202_5==4 | maxbild5==4 & max1202==4 & max1202_5==. replace Casmin=9 if max1202_5==5 replace Casmin=-4 if maxbild5==5 | max1202==9 replace Casmin=-3 if Casmin==. ****************************************************************************************** **************Labeln der Variablen #delimit ; label define 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 or general elementary education and vocational qualification/Hauptschulabschluss mit berufl. Ausbildung" 5 "2a_voc Intermediate vocational qualification or intermediate general qualification and 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"; #delimit cr label value Casmin casmin label var Casmin "CASMIN" ****************************************************************************************** drop maxbild5 ******************************************************************************************