1 The SAS System 07:23 Friday, April 14, 2017 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-642.3.1.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-642.3.1.el6.x86_64 #1 SMP Sun Jun 26 18:16:44 EDT 2016 x86_64 Red Hat Enterprise Linux Server release 6.8 (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.09 seconds cpu time 0.02 seconds 1 options ps=54 ls=76 nodate nonumber; 2 3 4 FILENAME website1 HTTP 5 "http://www.stat.ufl.edu/~winner/data/zylkene_uni_cat.dat"; 6 7 data uni; 8 infile website1; 9 input id weight age gender trt timepnt y; 10 run; The SAS System NOTE: The infile WEBSITE1 is: Filename=http://www.stat.ufl.edu/~winner/data/zylkene_uni_cat.dat, Local Host Name=ls-stat-login1.stat.ufl.edu, Local Host IP addr=10.241.112.62, Service Hostname Name=www.stat.ufl.edu, Service IP addr=128.227.24.87, Service Name=httpd,Service Portno=80, Lrecl=32767,Recfm=Variable NOTE: 170 records were read from the infile WEBSITE1. The minimum record length was 56. The maximum record length was 56. NOTE: The data set WORK.UNI has 170 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.02 seconds 11 12 proc glm data=uni; 13 class trt id timepnt; 14 model y = trt id(trt) timepnt timepnt*trt; 15 test h=trt e=id(trt); 16 run; 17 NOTE: The PROCEDURE GLM printed pages 1-2. NOTE: PROCEDURE GLM used (Total process time): real time 0.04 seconds cpu time 0.03 seconds 18 proc mixed data=uni; 19 class trt id timepnt; 20 model y = trt timepnt timepnt*trt; 21 random id(trt); 22 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 3-4. NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 23 24 proc mixed data=uni; 25 class trt id timepnt; 26 model y = trt timepnt timepnt*trt; 27 random int / subject= id(trt); The SAS System 28 repeated / type=ar(1) subject=id(trt) r rcorr; 29 run; NOTE: Convergence criteria met. NOTE: Estimated G matrix is not positive definite. NOTE: The PROCEDURE MIXED printed pages 5-7. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 30 31 32 FILENAME website2 HTTP 33 "http://www.stat.ufl.edu/~winner/data/cats_anxiety1.dat"; 34 35 data multi; 36 infile website2; 37 input id weight age gender enviro origin trt reult es1-es5; 38 run; NOTE: The infile WEBSITE2 is: Filename=http://www.stat.ufl.edu/~winner/data/cats_anxiety1.dat, Local Host Name=ls-stat-login1.stat.ufl.edu, Local Host IP addr=10.241.112.62, Service Hostname Name=www.stat.ufl.edu, Service IP addr=128.227.24.87, Service Name=httpd,Service Portno=80, Lrecl=32767,Recfm=Variable NOTE: 34 records were read from the infile WEBSITE2. The minimum record length was 104. The maximum record length was 104. NOTE: The data set WORK.MULTI has 34 observations and 13 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.02 seconds 39 40 proc glm data=multi; 41 class trt; 42 model es1-es5 = trt / nouni; 43 repeated time 5 (1 2 3 4 5) polynomial / summary printe; 44 run; NOTE: The Huynh-Feldt epsilon and the corresponding adjusted p-value have been enhanced to include a correction based on Lecoutre (1991). Use the UEPSDEF=HF option on the REPEATED statement to revert to the previous definition. 45 46 quit; The SAS System NOTE: The PROCEDURE GLM printed pages 8-14. NOTE: PROCEDURE GLM used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 47 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.24 seconds cpu time 0.13 seconds