clear #delimit ; set mem 500m; *global path ~; global path C:; use $path\data\china\china1988\income\uincome.dta; sort ucode; save $path\data\china\china1988\income\uincome.dta, replace; clear; use $path\data\china\china1988\income\urbanh.dta; sort ucode; merge ucode using $path\data\china\china1988\income\uincome.dta; drop _merge; label var uy "Disposable urban houshold income (per household)"; label var uy1 "Cash income of the working members"; label var uy2 "Income of the retired members"; label var uy3 "Income of the non-working members"; label var uy4 "Income from private/individual enterprises"; label var uy5 "Income from property"; label var uy6 "Miscellaneous income (includinq private transfer and special income)"; label var uy7 "Subsidies less taxes (except housing subsidy and ration coupon subsidy) and income in kind"; label var uy8 "Ration coupon subsidy"; label var uy9 "Housing subsidy"; label var uy10 "Rental value of owner occupied housing"; label var uyp "Disposable average individual income"; saveold $path\data\china\china1988\income\uhincome.dta, replace;