****************************************************************************************** ********************TN_Befragung_2016_Bildungsprämie************************************* ****************Bilden der Variable für die CASMIN**************************************** ************(Comparative Analysis of Social Mobility in Industrial Nations)*************** ****************************************************************************************** ****************************************************************************************** /* Herkunft: BIBB-FDZ Stataversion: 18.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 j07=Höchster Ausbildungsabschluss - bereinigt; j06=Höchster Schulabschluss gen maxbild5=. replace maxbild5=1 if j06==1 replace maxbild5=2 if j06==2 replace maxbild5=3 if j06==3 replace maxbild5=4 if j06==4 | j06==5 | j06==6 replace maxbild5=5 if j06==-9 | j06==-8 gen Casmin=. replace Casmin=1 if j07==4 & maxbild5==1 replace Casmin=2 if maxbild5==2 & j07==4 replace Casmin=3 if maxbild5==2 & j07==1 | maxbild5==2 & j07==2 replace Casmin=5 if maxbild5==3 & j07==1 | maxbild5==3 & j07==2 replace Casmin=4 if maxbild5==3 & j07==4 replace Casmin=6 if maxbild5==4 & j07==4 replace Casmin=7 if maxbild5==4 & j07==1 | maxbild5==4 & j07==2 replace Casmin=8 if maxbild5==4 & j07==3 replace Casmin=-9 if maxbild5==5 & j07==-9 | j07==-8 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 oder 3b Higher tertiary education/Hochschulabschluss (auf grund der Daten nicht differenzierbar)"; #delimit cr label value Casmin casmin label var Casmin "CASMIN" ****************************************************************************************** drop maxbild5 ******************************************************************************************