****************************************************************************************** **********************************BIBB_DICT_Erhebung_2010********************************* ****Bilden der Variable für die International Standard Classification of Education*1997*** ****************************************************************************************** ****************************************************************************************** /* Herkunft: BIBB-FDZ Stataversion: 12.0 MP 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 tab1 schul f50 //f50=Höchster Ausbildungsabschluss;schul=Höchster Schulabschluss gen isced=. replace isced=1 if f50==1 & schul==1 replace isced=2 if f50==1 & schul==2 replace isced=3 if f50==1 & schul==3 | f50==1 & schul==4 replace isced=4 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 replace isced=5 if f50==1 & schul==6 | f50==1 & schul==5 replace isced=6 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 replace isced=7 if f50==4 & schul>1 replace isced=8 if f50==5 & schul>1 | schul==7 replace isced=-4 if isced==. ****************************************************************************************** **************Labeln der Variablen #delimit ; label define 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"; #delimit cr label value isced isced label var isced "ISCED 97" ******************************************************************************************