1 The SAS System 23:53 Sunday, May 14, 2006 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to UNIV OF CA/BERKELEY, Site 0029107012. NOTE: This session is executing on the SunOS 5.8 platform. NOTE: SAS 9.1.3 Service Pack 3 You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html Welcome to SAS 9.1.3 licensed to the UCB Demography Lab For a short time it will be possible to run the old version of sas by typing sas81. Soon, however, this will be the only version availalbe -- I sure hope you like it. NOTE: SAS initialization used: real time 0.32 seconds cpu time 0.11 seconds 1 libname zh '~/taiwan/fies/sasdata'; NOTE: Libref ZH was successfully assigned as follows: Engine: V9 Physical Name: /home/brass/hdir0/ebenstei/taiwan/fies/sasdata 1 ! 2 options ls=72; 3 4 %macro one(q); 5 6 DATA zh.house&q; 7 SET zh.new&q; 8 9 KEEP 10 /* information about the household/household head */ 11 hhid areacode urban serial agrtype 11 ! agr_area 12 agr_work weight 13 14 /* household income & outlay variables */ 15 htotinc hhirepay hpay1 hpay2 hretpay 15 ! hothpart 16 hpay3 hovertim hawards hempins heinsnhi 16 ! hfringe 17 howninc hagrinc htreeinc hfishinc hbusinc 17 ! hexecinc 18 hpropinc hintinc hinvinc hothprop hestrent 18 ! hregtran 19 hpritran hgovtran hlowtran holdtran hfrmtran 2 The SAS System 23:53 Sunday, May 14, 2006 19 ! hgovgei 20 hgovnhi hothtrng hbenins hbengei hbennhi 20 ! hbustran 21 hlifeben hothtran habrtran hmiscinc htotexp 21 ! hintexp 22 hhosloan hothloan hregtpay hpritpay hpritmar 22 ! hpritchr 23 hpritoth hgovtpay hproptax hinctax hothtax 23 ! hothpayg 24 hsocins hpgeiins hpliins hpsiins hpnhiins 24 ! habrpay 25 26 mtotinc mhirepay mpay1 mpay2 mretpay 26 ! mothpart 27 mpay3 movertim mawards mempins meinsnhi 27 ! mfringe 28 mowninc magrinc mtreeinc mfishinc mbusinc 28 ! mexecinc 29 mpropinc mintinc minvinc mothprop mestrent 29 ! mregtran 30 mpritran mgovtran mlowtran moldtran mfrmtran 30 ! mgovgei 31 mgovnhi mothtrng mbenins mbengei mbennhi 31 ! mbustran 32 mlifeben mothtran mabrtran mmiscinc mtotexp 32 ! mintexp 33 mhosloan mothloan mregtpay mpritpay mpritmar 33 ! mpritchr 34 mpritoth mgovtpay mproptax minctax mothtax 34 ! mothpayg 35 msocins mpgeiins mpliins mpsiins mpnhiins 35 ! mabrpay 36 37 /* Household consumption exp variables */ 38 consexp foodstuf primary milk fruits 38 ! othfood 39 giftexp boardexp totdrink nonalcoh alcohol 39 ! tobacco 40 clotfoot clothing shoes totrent actrent 40 ! estown 41 estalloc upkeep waterexp hholdprm totfuel 41 ! electric 42 gasfuel othfuel totappl furnitur textile 42 ! durables 43 othappl tothkeep hhlabor hhservic othhkeep 43 ! tothealt 44 medequip inoutins medicine medprem mednhi 44 ! totcomm 45 equippur equiprun transuse othcomm motprem 45 ! totrecr 46 travexp recrexp bookexp recequip school 46 ! miscexp 47 othserv finserv hygiene hairexp foodhall 47 ! nonfmarr 48 othmisc nonsprem cap_gain cap_loss captrec 48 ! captpaid 49 50 /* Hosehold equipment variables */ 3 The SAS System 23:53 Sunday, May 14, 2006 51 colortv ldcdplay video stereo piano 51 ! videogam 52 vcr cable computer tele answer 52 ! fax 53 modem auto motorcyc oven acheat 53 ! dehumid 54 washer drier dishwash kitchfan vaccum 54 ! geyser 55 fountain microwav newspap periodic 56 57 /* Housing variables */ 58 ownhome rental allocate otherown res_use 58 ! bus_use 59 otheruse story_1 story_23 story_45 story_6 59 ! wateruse 60 nowater loan noloan ownpark rentpark 60 ! nopark 61 landarea bldarea leasres leasbus leasboth 61 ! noleas ; 62 63 htotinc = totinc0; 64 hhirepay = hirepay0; 65 hpay1 = pay1_0; 66 hpay2 = pay2_0; 67 hretpay = retpay0; 68 hothpart = othpart0; 69 hpay3 = pay3_0; 70 hovertim = overtim0; 71 hawards = awards0; 72 hempins = empins0; 73 heinsnhi = einsnhi0; 74 hfringe = fringe0; 75 howninc = owninc0; 76 hagrinc = agrinc0; 77 htreeinc = treeinc0; 78 hfishinc = fishinc0; 79 hbusinc = businc0; 80 hexecinc = execinc0; 81 hpropinc = propinc0; 82 hintinc = intinc0; 83 hinvinc = invinc0; 84 hothprop = othprop0; 85 hestrent = estrent0; 86 hregtran = regtran0; 87 hpritran = pritran0; 88 hgovtran = govtran0; 89 hlowtran = lowtran0; 90 holdtran = oldtran0; 91 hfrmtran = frmtran0; 92 hgovgei = govgei0; 93 hgovnhi = govnhi0; 94 hothtrng = othtrng0; 95 hbenins = benins0; 96 hbengei = bengei0; 97 hbennhi = bennhi0; 98 hbustran = bustran0; 99 hlifeben = lifeben0; 100 hothtran = othtran0; 4 The SAS System 23:53 Sunday, May 14, 2006 101 habrtran = abrtran0; 102 hmiscinc = miscinc0; 103 htotexp = totexp0; 104 hintexp = intexp0; 105 hhosloan = hosloan0; 106 hothloan = othloan0; 107 hregtpay = regtpay0; 108 hpritpay = pritpay0; 109 hpritmar = pritmar0; 110 hpritchr = pritchr0; 111 hpritoth = pritoth0; 112 hgovtpay = govtpay0; 113 hproptax = proptax0; 114 hinctax = inctax0; 115 hothtax = othtax0; 116 hothpayg = othpayg0; 117 hsocins = buspay0; 118 hpgeiins = pgeiins0; 119 hpliins = pliins0; 120 hfarmins = farmins0; 121 hfishins = fishins0; 122 hpsiins = psiins0; 123 hpnhiins = pnhiins0; 124 habrpay = abrpay0; 125 126 mtotinc = totinc9; 127 mhirepay = hirepay9; 128 mpay1 = pay1_9; 129 mpay2 = pay2_9; 130 mretpay = retpay9; 131 mothpart = othpart9; 132 mpay3 = pay3_9; 133 movertim = overtim9; 134 mawards = awards9; 135 mempins = empins9; 136 meinsnhi = einsnhi9; 137 mfringe = fringe9; 138 mowninc = owninc9; 139 magrinc = agrinc9; 140 mtreeinc = treeinc9; 141 mfishinc = fishinc9; 142 mbusinc = businc9; 143 mexecinc = execinc9; 144 mpropinc = propinc9; 145 mintinc = intinc9; 146 minvinc = invinc9; 147 mothprop = othprop9; 148 mestrent = estrent9; 149 mregtran = regtran9; 150 mpritran = pritran9; 151 mgovtran = govtran9; 152 mlowtran = lowtran9; 153 moldtran = oldtran9; 154 mfrmtran = frmtran9; 155 mgovgei = govgei9; 156 mgovnhi = govnhi9; 157 mothtrng = othtrng9; 158 mbenins = benins9; 5 The SAS System 23:53 Sunday, May 14, 2006 159 mbengei = bengei9; 160 mbennhi = bennhi9; 161 mbustran = bustran9; 162 mlifeben = lifeben9; 163 mothtran = othtran9; 164 mabrtran = abrtran9; 165 mmiscinc = miscinc9; 166 mtotexp = totexp9; 167 mintexp = intexp9; 168 mhosloan = hosloan9; 169 mothloan = othloan9; 170 mregtpay = regtpay9; 171 mpritpay = pritpay9; 172 mpritmar = pritmar9; 173 mpritchr = pritchr9; 174 mpritoth = pritoth9; 175 mgovtpay = govtpay9; 176 mproptax = proptax9; 177 minctax = inctax9; 178 mothtax = othtax9; 179 mothpayg = othpayg9; 180 msocins = buspay9; 181 mpgeiins = pgeiins9; 182 mpliins = pliins9; 183 mfarmins = farmins9; 184 mfishins = fishins9; 185 mpsiins = psiins9; 186 mpnhiins = pnhiins9; 187 mabrpay = abrpay9; 188 189 consexp = totcons; 190 191 LABEL 192 hhid ='Sample household id' 193 weight ='Sample weight' 194 areacode ='Area Code' 195 urban ='Urbanization' 196 serial ='Serial number of households' 197 agrtype = "Farm/nonfarm household" 198 agr_area = "Farm hhold class by cult land size" 199 agr_work = "Farm hhold class by working hours" 200 201 htotinc = "Total hh earned income" 202 hhirepay = "Compensation of employees" 203 hpay1 = "Full time pay-roll" 204 hpay2 = "Part time and spare time pay-roll" 205 hretpay = "Retirement pay" 206 hothpart = "Other part time payroll" 207 hpay3 = "Other receipts or subsidies" 208 hovertim = "Overtime pay" 209 hawards = "Awards" 210 hempins = "Insurance by employers" 211 heinsnhi = "Insurance of NHI by employers" 212 hfringe = "Fringe and death benefits" 213 howninc = "Enterpreneurial income" 214 hagrinc = "Agricultural & livestock income" 215 htreeinc = "Net forest income" 216 hfishinc = "Net fishing income" 6 The SAS System 23:53 Sunday, May 14, 2006 217 hbusinc = "Net operating surplus" 218 hexecinc = "Net professional income" 219 hpropinc = "Net property income" 220 hintinc = "Interest income" 221 hinvinc = "Investment income" 222 hothprop = "Net property income - others" 223 hestrent = "Imputed rent income" 224 hregtran = "Current transfer receipts" 225 hpritran = "Transfers from individuals" 226 hgovtran = "Transfers from govt." 227 hlowtran = "Tr from govt - low income hholds" 228 holdtran = "Tr from govt - old-age allowance" 229 hfrmtran = "Tr from govt - old farmer annuity" 230 hgovgei = "Ins of GEI, LI, FHI, & SI by govt" 231 hgovnhi = "Insurance of NHI by govt" 232 hothtrng = "Tr from govt - others" 233 hbenins = "Benefits of social insurance" 234 hbengei = "Benefit of GEI, LI, FHI, & SI" 235 hbennhi = "Benefit of NHI" 236 hbustran = "Transfers from enterprises" 237 hlifeben = "Cash benef of life & casualty insurance" 238 hothtran = "Other transfers from enterprises" 239 habrtran = "Transfers from abroad" 240 hmiscinc = "Miscellaneous receipts" 241 htotexp = "Total nonconsumption expenditure" 242 hintexp = "Interest exp" 243 hhosloan = "Interest - house loans" 244 hothloan = "Interest - others" 245 hregtpay = "Current transfer expenditures" 246 hpritpay = "Transfers to private" 247 hpritmar = "Tr to priv - exp of mar, bir & funeral" 248 hpritchr = "Tr to private - charities" 249 hpritoth = "Tr to private - others" 250 hgovtpay = "Transfers to government" 251 hproptax = "Tr to govt - house tax & land tax" 252 hinctax = "Tr to govt - income tax" 253 hothtax = "Tr to govt - other direct tax" 254 hothpayg = "Tr to govt - others" 255 hsocins = "Social insurance" 256 hpgeiins = "Expenditure on GEI" 257 hpliins = "Expenditure on LI" 258 hfarmins = "Exp on farmer's health insurance" 259 hfishins = "Exp on fisherman's health insurance" 260 hpsiins = "Expenditure on SI" 261 hpnhiins = "Expenditure on NHI" 262 habrpay = "Tranfers to abroad" 263 264 mtotinc = "Total hh earned income (409)" 265 mhirepay = "Compensation of employees (199)" 266 mpay1 = "Full time pay-roll (219)" 267 mpay2 = "Part time and spare time pay-roll(229)" 268 mretpay = "Retirement pay (159)" 269 mothpart = "Other part time payroll (169)" 270 mpay3 = "Other receipts or subsidies (239)" 271 movertim = "Overtime pay (119)" 272 mawards = "Awards (129)" 273 mempins = "Insurance by employers (139)" 274 meinsnhi = "Insurance of NHI by employers (709)" 7 The SAS System 23:53 Sunday, May 14, 2006 275 mfringe = "Fringe and death benefits (149)" 276 mowninc = "Enterpreneurial income (249)" 277 magrinc = "Agricultural & livestock income (269)" 278 mtreeinc = "Net forest income (279)" 279 mfishinc = "Net fishing income (289)" 280 mbusinc = "Net operating surplus (299)" 281 mexecinc = "Net professional income (329)" 282 mpropinc = "Net property income (339)" 283 mintinc = "Interest income (349)" 284 minvinc = "Investment income (359)" 285 mothprop = "Net property income - others (369)" 286 mestrent = "Imputed rent income (399)" 287 mregtran = "Current transfer receipts (419)" 288 mpritran = "Transfers from individuals (429)" 289 mgovtran = "Transfers from govt. (439)" 290 mlowtran = "Tr from govt - low income hholds (309)" 291 moldtran = "Tr from govt - old-age allowance (319)" 292 mfrmtran = "Tr from govt - old farmer annuity (379)" 293 mgovgei = "Ins of GEI, LI, FHI, & SI by govt (209)" 294 mgovnhi = "Insurance of NHI by govt (959)" 295 mothtrng = "Tr from govt - others (389)" 296 mbenins = "Benefits of social insurance (459)" 297 mbengei = "Benefit of GEI, LI, FHI, & SI (989)" 298 mbennhi = "Benefit of NHI (949)" 299 mbustran = "Transfers from enterprises (449)" 300 mlifeben = "Cash benef of life & casualty ins (469)" 301 mothtran = "Other transfers from enterprises (479)" 302 mabrtran = "Transfers from abroad (489)" 303 mmiscinc = "Miscellaneous receipts (499)" 304 mtotexp = "Total nonconsumption expenditure (609)" 305 mintexp = "Interest exp (549)" 306 mhosloan = "Interest - house loans (519)" 307 mothloan = "Interest - others (529)" 308 mregtpay = "Current transfer expenditures (569)" 309 mpritpay = "Transfers to private (579)" 310 mpritmar = "Tr to pr - exp of mar, bir & funer (559)" 311 mpritchr = "Tr to private - charities (179)" 312 mpritoth = "Tr to private - others (189)" 313 mgovtpay = "Transfers to government (589)" 314 mproptax = "Tr to govt - house tax & land tax (599)" 315 minctax = "Tr to govt - income tax (619)" 316 mothtax = "Tr to govt - other direct tax (629)" 317 mothpayg = "Tr to govt - others (639)" 318 msocins = "Social Insurance (649)" 319 mpgeiins = "Expenditure on GEI (659)" 320 mpliins = "Expenditure on LI (669)" 321 mfarmins = "Exp on farmer's health insurance (679)" 322 mfishins = "Exp on fisherman's health insurance (859)" 323 mpsiins = "Expenditure on SI (869)" 324 mpnhiins = "Expenditure on NHI (689)" 325 mabrpay = "Tranfers to abroad (699)" 326 327 consexp = "Total consumption exp" 328 foodstuf = "Total food exp" 329 primary = "Main food - exps" 330 milk = "Dairy - exps" 331 fruits = "Fruits - exps" 332 othfood = "Other food - exps" 8 The SAS System 23:53 Sunday, May 14, 2006 333 giftexp = "Gifts - exps" 334 boardexp = "Board - exps" 335 totdrink = "Beverage - exps" 336 nonalcoh = "Non-alcoholic beverage - exps" 337 alcohol = "Alcoholic beverage - exps" 338 tobacco = "Tobacco - exps" 339 clotfoot = "Clothing and footwear - exps" 340 clothing = "Clothing - exps" 341 shoes = "Footwear - exps" 342 totrent = "Rent and water charge - exps" 343 actrent = "Rent actual paid" 344 estown = "Imputed rent of self-owned" 345 estalloc = "Imputed rent of issued & leased" 346 upkeep = "Repairs - bldg upkeep exps" 347 waterexp = "Water charge - exps" 348 hholdprm = "Household premiums" 349 totfuel = "Fuel & lighting - exps" 350 electric = "Electric rate - exps" 351 gasfuel = "Gas - exps" 352 othfuel = "Fuel others - exps" 353 totappl = "Furnit. & fam. fac. - exps" 354 furnitur = "Furniture - exps" 355 textile = "Textile furnishing - exps" 356 durables = "Durable hhold equip - exps" 357 othappl = "Fur & fam fac others - exps" 358 tothkeep = "Household operation - exps" 359 hhlabor = "Domestic seravants - exps" 360 hhservic = "Service to family - exps" 361 othhkeep = "Other household oper. - exps" 362 tothealt = "Medical care & senit. - exps" 363 medequip = "Medical equip. and instr. - exps" 364 inoutins = "Treatment in hospital - exps" 365 medicine = "Exp of medical article" 366 medprem = "Personal accident & medical premiums" 367 mednhi = "Medical consumption of NHI" 368 totcomm = "Transport and comm. - exps" 369 equippur = "Pur. of pers. trans. equip. - exps" 370 equiprun = "Oper. & maint. of per. tr. eq. - exps" 371 transuse = "Purchased transportation - exps" 372 othcomm = "Other communications - exps" 373 motprem = "Motor vehicle premiums - exps" 374 totrecr = "Exp on recr., educ. & cult." 375 travexp = "Travelling expenses" 376 recrexp = "Recreation service - exps" 377 bookexp = "Newspaper, mag. & stationary - exps" 378 recequip = "Recreation facilities - exps" 379 school = "Exp on educ., cult. & researches" 380 miscexp = "Total miscellaneous exp" 381 othserv = "Other goods not listed - exps" 382 finserv = "Financial service - exps" 383 hygiene = "Personal care - exps" 384 hairexp = "Barber and bath - exps" 385 foodhall = "Food, bev & tob. in rest, ball - exps" 386 nonfmarr = "Gifts (food exclusive) - exps" 387 othmisc = "Miscellaneous expenses (847)" 388 nonsprem = "Misc other nonsaving premiums - exps" 389 cap_gain = "Capital gain" 390 cap_loss = "Capital loss" 9 The SAS System 23:53 Sunday, May 14, 2006 391 captrec = "Capital transfers received" 392 captpaid = "Capital transfers paid" 393 394 colortv = "Color television set" 395 ldcdplay = "Laser disk player" 396 video = "Movie camera" 397 stereo = "stereo" 398 piano = "Piano" 399 videogam = "Video game" 400 vcr = "Video tape recorder" 401 cable = "Cable TV" 402 computer = "Personal computer" 403 tele = "Telephone" 404 answer = "Answer machine" 405 fax = "Fax machine" 406 modem = "Modem" 407 auto = "Sedan vehicle" 408 motorcyc = "Motor bicycle" 409 oven = "Electro-magnetic oven" 410 acheat = "Air conditioner" 411 dehumid = "Dehumidifier" 412 washer = "Washing machine" 413 drier = "Drier" 414 dishwash = "Dsihwasher" 415 kitchfan = "Exhaust fan" 416 vaccum = "Vaccum cleaner" 417 geyser = "Geyser" 418 fountain = "Hot-warm fountain" 419 microwav = "Oven (microwave)" 420 newspap = "Newspaper" 421 periodic = "Magazine" 422 423 ownhome = "Tenure of dwelling - self-owned" 424 rental = "Tenure of dwelling - rented" 425 allocate = "Tenure of dwelling - issued" 426 otherown = "Tenure of dwelling - leased & others" 427 res_use = "Usage of dwelling - independent" 428 bus_use = "Usage of dwelling - connected" 429 otheruse = "Usage of dwelling - others" 430 story_1 = "Const mat & style - one story" 431 story_23 = "Const mat & style - two or three stories" 432 story_45 = "Const mat & style - four or five stories" 433 story_6 = "Const mat & style - six stories or over" 434 wateruse = "Piped water equip - with usage" 435 nowater = "Piped water equip - none" 436 loan = "Self-owned house loans - having loans" 437 noloan = "Self-owned house loans - none" 438 ownpark = "Parking lot - self-owned" 439 rentpark = "Parking lot - rented" 440 nopark = "Parking lot - none" 441 landarea = "Room nums & area - housing land area" 442 bldarea = "Room nums & area - total room area" 443 leasres = "With leased house - for residence" 444 leasbus = "With leased house - for business" 445 leasboth = "With leased house - for business and 445 ! residence" 446 noleas = "With leased house - none" ; 447 10 The SAS System 23:53 Sunday, May 14, 2006 448 PROC CONTENTS ; 449 450 run; 451 %mend; 452 %one(99); NOTE: There were 13801 observations read from the data set ZH.NEW99. NOTE: The data set ZH.HOUSE99 has 13801 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 8.35 seconds cpu time 1.77 seconds NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.20 seconds cpu time 0.08 seconds NOTE: The PROCEDURE CONTENTS printed pages 1-6. 453 %one(00); NOTE: There were 13801 observations read from the data set ZH.NEW00. NOTE: The data set ZH.HOUSE00 has 13801 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 6.95 seconds cpu time 1.52 seconds NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.07 seconds cpu time 0.04 seconds NOTE: The PROCEDURE CONTENTS printed pages 7-12. 454 %one(01); NOTE: There were 13601 observations read from the data set ZH.NEW01. NOTE: The data set ZH.HOUSE01 has 13601 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 6.80 seconds cpu time 1.35 seconds NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.07 seconds cpu time 0.03 seconds NOTE: The PROCEDURE CONTENTS printed pages 13-18. 455 %one(02); NOTE: There were 13681 observations read from the data set ZH.NEW02. NOTE: The data set ZH.HOUSE02 has 13681 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 6.64 seconds 11 The SAS System 23:53 Sunday, May 14, 2006 cpu time 1.63 seconds NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.07 seconds cpu time 0.02 seconds NOTE: The PROCEDURE CONTENTS printed pages 19-24. 456 %one(03); NOTE: There were 13681 observations read from the data set ZH.NEW03. NOTE: The data set ZH.HOUSE03 has 13681 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 5.88 seconds cpu time 1.48 seconds NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.07 seconds cpu time 0.02 seconds NOTE: The PROCEDURE CONTENTS printed pages 25-30. 457 458 %include '~/nta/savastata.mac'; 2913 2914 %macro convert(aa); 2915 data house&aa; 2916 set zh.house&aa; 2917 %savastata(~/taiwan/fies/fiesdata 2917 ! /,replace); 2918 run; 2919 %mend; 2920 %convert(99); NOTE: There were 13801 observations read from the data set ZH.HOUSE99. NOTE: The data set WORK.HOUSE99 has 13801 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 1.66 seconds cpu time 0.36 seconds NOTE: Savastata has successfully saved the * Stata 8 Intercooled data file /home/brass/hdir0/ebenstei/taiwan/fies/fiesdata/house99.dta. * Stata reports that the dataset has 13801 observations and 246 variables. * NOTE: Savastata took less than a minute to run. * 3677 %convert(00); NOTE: There were 13801 observations read from the data set ZH.HOUSE00. NOTE: The data set WORK.HOUSE00 has 13801 observations and 246 variables. 12 The SAS System 23:53 Sunday, May 14, 2006 NOTE: DATA statement used (Total process time): real time 1.64 seconds cpu time 0.46 seconds NOTE: Savastata has successfully saved the * Stata 8 Intercooled data file /home/brass/hdir0/ebenstei/taiwan/fies/fiesdata/house00.dta. * Stata reports that the dataset has 13801 observations and 246 variables. * NOTE: Savastata took less than a minute to run. * 4434 %convert(01); NOTE: There were 13601 observations read from the data set ZH.HOUSE01. NOTE: The data set WORK.HOUSE01 has 13601 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 1.59 seconds cpu time 0.46 seconds NOTE: Savastata has successfully saved the * Stata 8 Intercooled data file /home/brass/hdir0/ebenstei/taiwan/fies/fiesdata/house01.dta. * Stata reports that the dataset has 13601 observations and 246 variables. * NOTE: Savastata took less than a minute to run. * 5191 %convert(02); NOTE: There were 13681 observations read from the data set ZH.HOUSE02. NOTE: The data set WORK.HOUSE02 has 13681 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 1.59 seconds cpu time 0.34 seconds NOTE: Savastata has successfully saved the * Stata 8 Intercooled data file /home/brass/hdir0/ebenstei/taiwan/fies/fiesdata/house02.dta. * Stata reports that the dataset has 13681 observations and 246 variables. * NOTE: Savastata took less than a minute to run. * 5948 %convert(03); NOTE: There were 13681 observations read from the data set ZH.HOUSE03. NOTE: The data set WORK.HOUSE03 has 13681 observations and 246 variables. NOTE: DATA statement used (Total process time): real time 1.83 seconds cpu time 0.45 seconds NOTE: Savastata has successfully saved the * Stata 8 Intercooled data file 13 The SAS System 23:53 Sunday, May 14, 2006 /home/brass/hdir0/ebenstei/taiwan/fies/fiesdata/house03.dta. * Stata reports that the dataset has 13681 observations and 246 variables. * NOTE: Savastata took less than a minute to run. * NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 2:08.86 cpu time 51.43 seconds