****************************************************************************************** *******************BIBB/BAuA Erwerbstätigenbefragung 2006********************************* ****************Bilden der Variable für die CASMIN**************************************** ************(Comparative Analysis of Social Mobility in Industrial Nations)*************** ****************************************************************************************** ****************************************************************************************** /* Herkunft: BIBB-FDZ Stataversion: 12.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äische Sozialforschung. */ ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen tab1 max1202 maxbild5 //max1202=Höchster Ausbildungsabschluss - bereinigt; maxbild5=Höchster Schulabschluss gen h_uni=. replace h_uni=1 if f1202_korr==4 | g1202_korr==4 | h1202_korr==4 | i1202_korr==4 | j1202_korr==4 replace h_uni=0 if f1202_korr==3 | g1202_korr==3 | h1202_korr==3 | i1202_korr==3 | j1202_korr==3 replace h_uni=3 if h_uni==. & max1202==4 label define uni 0"FH" 1"uni" label value h_uni uni 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 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 maxbild5==4 & h_uni==0 | maxbild5==4 & h_uni==3 replace casmin=9 if h_uni==1 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" ******************************************************************************************