****************************************************************************************** **********************************BIBB_DICT_Erhebung_2010********************************* ****Bilden der Variable für die International Standard Classification of Education*1997*** ****************************************************************************************** ****************************************************************************************** * Herkunft: BIBB-FDZ PASW Statistics 18 Quelle: Lechert, Yvonne; Schroedter, Julia ; Lüttinger, Paul (2006): Die Umsetzung der Bildungsskala ISCED-1997 für die Volkszählung 1970, die Mikrozensus-Zusatzerhebung 1971 und die Mikrozensen 1976-2004. ZUMA-Methodenbericht, 12. ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen f50=Höchster Ausbildungsabschluss;schul=Höchster Schulabschluss. compute isced=$SYSMIS. if f50=1 & schul=1 isced=1. if f50=1 & schul=2 isced=2. if f50=1 & schul=3 | f50=1 & schul=4 isced=3. if f50=2 & schul=2 | f50=2 & schul=3 | f50=3 & schul=2 | f50=3 & schul=3 | f50=6 & schul=2 | f50=6 & schul=3 | f50=2 & schul=4 | f50=3 & schul=4 | f50=2 & schul=1 isced=4. if f50=1 & schul=6 | f50=1 & schul=5 isced=5. if f50=2 & schul=6 | f50=3 & schul=6 | f50=6 & schul=6 | f50=2 & schul=5 | f50=3 & schul=5 | f50=6 & schul=5 isced=6. if f50=4 & schul>1 isced=7. if f50=5 & schul>1 | schul=7 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. ******************************************************************************************