**************************************************************************************************************************** *******************BIBB/BAuA Erwerbstätigenbefragung 2012********************************* ****Bilden der Variable für die International Standard Classification of Education*1997*** ****************************************************************************************** ****************************************************************************************** * Herkunft: BIBB-FDZ PASW Statistics 18 Quelle: Schroedter, J. H., Lechert, Y., und Lüttinger, P., (2006): Die Umsetzung der Bildungsskala ISCED-1997 für die Volkszählung 1970, die Mikrozensus-Zusatzerhebung 1971 und die Mikrozensen 1976-2004. GESIS. ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen //Max1202=Höchster Ausbildungsabschluss - bereinigt; maxbild5=Höchster Schulabschluss. 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 Isced=$SYSMIS. if Max1202=1 & maxbild5=1 Isced=1. if Max1202=1 & maxbild5=2 Isced=2. if Max1202=1 & maxbild5=3 Isced=3. if Max1202=2 & maxbild5=2 | Max1202=2 & maxbild5=3 Isced=4. if Max1202=1 & maxbild5=4 Isced=5. if Max1202=2 & maxbild5=4 Isced=6. if Max1202=3 & maxbild5>1 Isced=7. if Max1202=4 & maxbild5>1 Isced=8. if missing (Isced) Isced=-4. ****************************************************************************************** **************Labeln der Variablen. VALUE LABELS Isced -9 "keine Angabe" -8 "weiß nicht" -7 "trifft nicht zu" -6 "ungültig" -5 "verweigert" -4 "nicht zuordenbar" -1 "Filter" 0 "0 Pre-primary education / Kindergarten" 1 "1 Primary education on first stage of basic education / Grundschule" 2 "2b Lower secondary education / Hauptschule" 3 "2a Lower secondary education / Mittlere Reife" 4 "3b Upper secondary education / Abschulss berufl. Ausbildung" 5 "3a Upper secondary education / Fach-|Hochschulreife" 6 "4a Post secondary non tertiary education / Abi + berufl. Ausbildung" 7 "5b First stage of tertiary education / Meister|Techniker" 8 "5a First stage of tertiary education / Uni FH Abschluss" 9 "6 Second stage of tertiary education / Promotion". formats Isced (f5.0). VARIABLE LABELS isced "ISCED 97". EXECUTE. DELETE VARIABLES maxbild5. EXECUTE. *********************************************************************************************************************************