1 The SAS System 08:20 Thursday, September 12, 2013 NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.2 (TS2M2) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 70055083. NOTE: This session is executing on the Linux 2.6.24-30-server (LINUX) platform. 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 This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.03 seconds cpu time 0.03 seconds 1 options ps=55 ls=76; 2 3 data one; 4 infile 'china_carbon.dat'; 5 input year emit pop urban workage hhsize pcexp; 6 log_emit = log(1000*emit); 7 log_pop=log(1000*pop); 8 log_urban = log(urban); 9 log_workage = log(workage); 10 log_hhsize = log(hhsize); 11 log_pcexp = log(pcexp); 12 run; NOTE: The infile 'china_carbon.dat' is: Filename=/home/winner/public_html/data/china_carbon.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Thu Sep 5 09:02:30 2013, File Size (bytes)=1767 NOTE: 31 records were read from the infile 'china_carbon.dat'. The minimum record length was 56. The maximum record length was 56. NOTE: The data set WORK.ONE has 31 observations and 13 variables. 2 The SAS System 08:20 Thursday, September 12, 2013 NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 13 14 proc reg; 15 model log_emit = log_pop log_urban log_workage log_hhsize 15 ! log_pcexp; 16 run; 17 ods PDF file="china_carbon_sas.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/china_carbon_sas.pdf", printer "PDF". 18 ods graphics on; NOTE: The PROCEDURE REG printed page 1. NOTE: PROCEDURE REG used (Total process time): real time 0.11 seconds cpu time 0.09 seconds 19 proc reg outvif outest=b ridge=0 to 0.2 by 0.002; 20 model log_emit = log_pop log_urban log_workage log_hhsize 20 ! log_pcexp; 21 run; ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. 22 ods graphics off; 23 ods PDF close; NOTE: ODS PDF printed 4 pages to /home/winner/public_html/data/china_carbon_sas.pdf. 24 NOTE: The data set WORK.B has 203 observations and 13 variables. NOTE: The PROCEDURE REG printed page 2. NOTE: PROCEDURE REG used (Total process time): real time 10.50 seconds 3 The SAS System 08:20 Thursday, September 12, 2013 cpu time 0.97 seconds 25 proc print data=b; NOTE: There were 203 observations read from the data set WORK.B. NOTE: The PROCEDURE PRINT printed pages 3-12. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.01 seconds ERROR: Errors printed on page 2. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 10.70 seconds cpu time 1.11 seconds