1 The SAS System 15:45 Tuesday, April 3, 2012 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-29-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=54 ls=80 nodate nonumber; 2 3 data price; 4 infile 'carpr_bibd.dat'; 5 input dealer 1-8 interviewer 9-16 price 17-24; 6 run; NOTE: The infile 'carpr_bibd.dat' is: Filename=/home/winner/public_html/data/carpr_bibd.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxr-x, Last Modified=Thu Apr 1 15:22:28 2010, File Size (bytes)=1456 NOTE: 56 records were read from the infile 'carpr_bibd.dat'. The minimum record length was 25. The maximum record length was 25. NOTE: The data set WORK.PRICE has 56 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds The SAS System 7 8 proc print; 9 NOTE: There were 56 observations read from the data set WORK.PRICE. NOTE: The PROCEDURE PRINT printed pages 1-2. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 10 proc glm; 11 class dealer interviewer; 12 model price = dealer interviewer; 13 lsmeans interviewer / tdiff pdiff adjust=bon stderr; 14 run; 15 NOTE: The PROCEDURE GLM printed pages 3-5. NOTE: PROCEDURE GLM used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 16 proc mixed; 17 class dealer interviewer; 18 model price = interviewer / ddfm=kr; 19 random dealer; 20 lsmeans interviewer / diff adjust=bon; 21 run; NOTE: With DDFM=SATTERTHWAITE or DDFM=KENWADROGER, unadjusted p-values in tests are based on the degrees of freedom specific to that comparison. P-values that are adjusted for multiplicity, however, are by default based on the denominator degrees of freedom for the Type 3 test of the fixed effect. If you specify the ADJDFE=ROW option in the LSMEANS statement, the adjusted p-values take into account the row-wise degrees of freedom. NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 6-9. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.10 seconds cpu time 0.09 seconds