****************************************************************************************** *******************BIBB/BAuA Erwerbstätigenbefragung 2006********************************* ****Bilden der Variable für die International Standard Classification of Education*1997*** ****************************************************************************************** ****************************************************************************************** /* Herkunft: BIBB-FDZ Stataversion: 12.0 MP 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 tab1 max1202 maxbild5 //max1202=Höchster Ausbildungsabschluss - bereinigt; maxbild5=Höchster Schulabschluss gen isced=. replace isced=1 if max1202==1 & maxbild5==1 replace isced=2 if max1202==1 & maxbild5==2 replace isced=3 if max1202==1 & maxbild5==3 replace isced=4 if max1202==2 & maxbild5==2 | max1202==2 & maxbild5==3 replace isced=5 if max1202==1 & maxbild5==4 replace isced=6 if max1202==2 & maxbild5==4 replace isced=7 if max1202==3 & maxbild5>1 replace isced=8 if max1202==4 & maxbild5>1 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" ******************************************************************************************