1 The SAS System 11:57 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.06 seconds cpu time 0.02 seconds 1 options ps=54 ls=76; 2 3 FILENAME website HTTP 4 "http://www.stat.ufl.edu/~winner/data/wpba2009.dat"; 5 6 data wpba2009; 7 infile website; 8 input bowler 7-8 pattern 16 set 24 game 32 score 38-40; 9 run; 2 The SAS System 11:57 Tuesday, March 20, 2018 NOTE: The infile WEBSITE is: Filename=http://www.stat.ufl.edu/~winner/data/wpba2009.dat, Local Host Name=ls-stat-login1.stat.ufl.edu, Local Host IP addr=10.241.112.62, Service Hostname Name=phil.ufl.edu, Service IP addr=128.227.24.87, Service Name=httpd,Service Portno=80, Lrecl=32767,Recfm=Variable NOTE: 840 records were read from the infile WEBSITE. The minimum record length was 40. The maximum record length was 40. NOTE: The data set WORK.WPBA2009 has 840 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.04 seconds cpu time 0.04 seconds 10 11 proc means mean std; 12 class bowler; 13 var score; 14 run; NOTE: There were 840 observations read from the data set WORK.WPBA2009. NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 15 16 proc means mean std; 17 class pattern; 18 var score; 19 run; NOTE: There were 840 observations read from the data set WORK.WPBA2009. NOTE: The PROCEDURE MEANS printed page 2. NOTE: PROCEDURE MEANS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 20 21 proc means mean std; 22 class bowler pattern; 23 var score; 24 run; NOTE: There were 840 observations read from the data set WORK.WPBA2009. NOTE: The PROCEDURE MEANS printed pages 3-5. 3 The SAS System 11:57 Tuesday, March 20, 2018 NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 25 26 proc mixed covtest cl; 27 class bowler pattern; 28 model score = pattern; 29 random bowler bowler*pattern; 30 lsmeans pattern / pdiff; 31 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 6-8. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 32 quit; 33 34 proc glm; 35 class bowler pattern; 36 model score = pattern bowler pattern*bowler; 37 test h=pattern e=pattern*bowler; 38 test h=bowler e=pattern*bowler; 39 run; 40 41 quit; NOTE: The PROCEDURE GLM printed pages 9-10. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.02 seconds 42 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.22 seconds cpu time 0.14 seconds