1 The SAS System 14:31 Tuesday, March 20, 2018 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M1) Licensed to UNIVERSITY OF FLORIDA - SFA T&R, Site 70095659. NOTE: This session is executing on the Linux 2.6.32-696.18.7.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 13.1 SAS/ETS 13.1 SAS/OR 13.1 SAS/IML 13.1 SAS/QC 13.1 NOTE: Additional host information: Linux LIN X64 2.6.32-696.18.7.el6.x86_64 #1 SMP Thu Dec 28 20:15:47 EST 2017 x86_64 Red Hat Enterprise Linux Server release 6.9 (Santiago) 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.12 seconds cpu time 0.03 seconds 1 options ps=54 ls=80; 2 3 FILENAME website HTTP 4 "http://www.stat.ufl.edu/~winner/data/lpga2008.dat"; 5 6 data lpga1; 7 infile website; 8 input golfer $ 1-30 drive fairway green putts sandshot sandsave 9 prz logprz rounds id; 10 2 The SAS System 14:31 Tuesday, March 20, 2018 11 ods PDF file="lpga_boxcox.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/lpga_boxcox.pdf", printer "PDF". 12 ods graphics on; 13 NOTE: The infile WEBSITE is: Filename=http://www.stat.ufl.edu/~winner/data/lpga2008.dat, Local Host Name=ls-stat-login1.stat.ufl.edu, Local Host IP addr=10.241.112.62, Service Hostname Name=aall.ufl.edu, Service IP addr=128.227.24.87, Service Name=httpd,Service Portno=80, Lrecl=32767,Recfm=Variable NOTE: 157 records were read from the infile WEBSITE. The minimum record length was 110. The maximum record length was 110. NOTE: The data set WORK.LPGA1 has 157 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.12 seconds cpu time 0.10 seconds 14 proc reg plots=diagnostics; 15 model prz = drive green putts sandshot sandsave; 16 run; 17 NOTE: The PROCEDURE REG printed page 1. NOTE: PROCEDURE REG used (Total process time): real time 6.24 seconds cpu time 0.54 seconds 18 proc transreg; 19 model BoxCox(prz / lambda=-2 to 2 by 0.02) = identity(drive green 19 ! putts 20 sandshot sandsave); 21 run; NOTE: PROCEDURE TRANSREG used (Total process time): real time 1.25 seconds cpu time 0.14 seconds 22 23 ods graphics off; 24 ods PDF close; NOTE: ODS PDF printed 4 pages to /home/winner/public_html/data/lpga_boxcox.pdf. 25 run; 3 The SAS System 14:31 Tuesday, March 20, 2018 26 27 proc transreg; 28 model BoxCox(prz / lambda=-2 to 2 by 0.02) = identity(drive green 28 ! putts 29 sandshot sandsave); 30 run; NOTE: The PROCEDURE TRANSREG printed pages 2-6. NOTE: PROCEDURE TRANSREG used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 31 32 quit; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 11.94 seconds cpu time 0.88 seconds