1 The SAS System 08:05 Friday, March 31, 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.06 seconds cpu time 0.02 seconds 1 options ps=54 ls=76 nodate nonumber; 2 3 data fine; 4 infile "fineprice.dat"; 5 input dcc fee_trt numkids week expblock numlate tnl; 6 run; NOTE: The infile "fineprice.dat" is: Filename=/home/winner/public_html/data/fineprice.dat, Owner Name=winner,Group Name=domain users, The SAS System Access Permission=-rwxrwxr-x, Last Modified=14Mar2013:16:38:20, File Size (bytes)=11400 NOTE: 200 records were read from the infile "fineprice.dat". The minimum record length was 56. The maximum record length was 56. NOTE: The data set WORK.FINE has 200 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 7 8 proc glm; 9 class fee_trt dcc expblock week; 10 model tnl = fee_trt expblock fee_trt*expblock dcc(fee_trt) 10 ! week(expblock); 11 run; 12 13 NOTE: The PROCEDURE GLM printed pages 1-2. NOTE: PROCEDURE GLM used (Total process time): real time 0.03 seconds cpu time 0.02 seconds 14 proc mixed; 15 class fee_trt dcc expblock week; 16 model tnl = fee_trt expblock fee_trt*expblock/ ddfm=satter ______ 1 16 ! htype=1,3; WARNING 1-322: Assuming the symbol SATTERTH was misspelled as satter. 17 random dcc(fee_trt) week(expblock); 18 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.01 seconds 19 20 proc mixed; 21 class fee_trt dcc expblock week; 22 model tnl = fee_trt expblock fee_trt*expblock/ ddfm=kr htype=1,3; 23 random dcc(fee_trt) week(expblock); 24 run; The SAS System NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 5-6. NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.02 seconds 25 run; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.13 seconds cpu time 0.08 seconds