****************************************************************************************** *********************************BIBB_FluCT_Erhebung_2011********************************* *************Codieren einer Variablen zur Unterscheidung von****************************** **********technologie- und wissensintensiven Wirtschaftszweigen*************************** **************aus der Klassifizierug der Wirtschaftszweige 2008*************************** ****************************************************************************************** ****************************************************************************************** *Herkunft: BIBB-FDZ. * PASW Statistics 18. * Quelle: http://epp.eurostat.ec.europa.eu/cache/ITY_SDDS/Annexes/htec_esms_an3.pdf (Stand: 03.09.2013) ****************************************************************************************** ****************************************************************************************** *********************Recodieren der Variablen. * branche=Wirtschaftszweig nach WZ 2008, 2-steller. COMPUTE ti_ki=branche. FORMATS ti_ki(f5.0). EXECUTE. recode ti_ki (21 26 =1)(20 27 thru 30 =2)(19 22 thru 25 33 =3) (10 thru 18 31 32=4)(50 51 58 thru 63 64 thru 66 69 thru 75 78 80 84 thru 93=5) (45 thru 47 49 52 53 55 56 68 77 79 81 82 94 thru 96 97 thru 99 =6). if ti_ki>6 ti_ki=0. EXECUTE. ****************************************************************************************** **************Labeln der Variablen VALUE LABELS ti_ki 0 'other' 1 'Manufacturing industries-High-technology' 2 'Manufacturing industries-Medium-high-technology' 3 'Manufacturing industries-Medium-low-technology' 4 'Manufacturing industries-Low-technology' 5 'Knowledge-intensive services (KIS)' 6 'Less knowledge-intensive services(LKIS)'. VARIABLE LABELS ti_ki 'technological intensity_knowledgeintensive services'. EXECUTE. ******************************************************************************************