* Encoding: UTF-8. *************************************************************************************************** ********************TN_Befragung_2016_Bildungsprämie************************************* ****************Bilden der Variable für die casmin******************************************* ************(Comparative Analysis of Social Mobility in Industrial Nations)**************** ************************************************************************************************** ************************************************************************************************** /* Herkunft: BIBB-FDZ IBM SPSS: 25 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. COMPUTE maxbild5=$SYSMIS. if j06 =1 maxbild5=1. if j06 =2 maxbild5=2. if j06 =3 maxbild5=3. if j06 =4 | j06 =5 | j06 =6 maxbild5=4. if j06 =-9 | j06 =-8 maxbild5=5. compute casmin=$SYSMIS. if j07 =4 & maxbild5 =1 casmin=1. if maxbild5 =2 & j07 =4 casmin=2. if maxbild5 =2 & j07 =1 | maxbild5 =2 & j07 =2 casmin=3. if maxbild5 =3 & j07 =1 | maxbild5 =3 & j07 =2 casmin=5. if maxbild5 =3 & j07 =4 casmin=4. if maxbild5 =4 & j07 =4 casmin=6. if maxbild5 =4 & j07 =1 | maxbild5 =4 & j07 =2 casmin=7. if maxbild5 =4 & j07 =3 casmin=8. if maxbild5 =5 & j07 =-9 | j07 =-8 casmin=-9. 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 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)". VARIABLE LABELS casmin "Casmin". ******************************************************************************************. DELETE VARIABLES maxbild5. ******************************************************************************************