1 The SAS System 13:31 Thursday, January 12, 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.01 seconds 1 options ps=54 ls=78; 2 3 data dyad; 4 infile 'dyad_hlm.dat'; 5 input dyad 7-8 indiv 23-24 i_perform 27-32 i_motivate 42-48 6 i_cohesion 58-64 d_cohesion 74-80 d_motivate 82-88 7 d_motivate_lo 114-120 d_motivate_hi 106-112; 8 run; NOTE: The infile 'dyad_hlm.dat' is: Filename=/home/winner/public_html/data/dyad_hlm.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Mon Jul 18 15:34:09 2011, File Size (bytes)=9108 NOTE: 66 records were read from the infile 'dyad_hlm.dat'. The minimum record length was 137. The maximum record length was 137. NOTE: The data set WORK.DYAD has 66 observations and 9 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 2 The SAS System 13:31 Thursday, January 12, 2012 9 10 proc mixed; 11 class dyad; 12 model i_perform = /solution ; 13 random intercept / subject=dyad; 14 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 1-2. NOTE: PROCEDURE MIXED used (Total process time): real time 0.03 seconds cpu time 0.04 seconds 15 16 proc mixed covtest; 17 class dyad; 18 model i_perform = i_motivate d_motivate d_cohesion / solution; 19 random intercept / subject=dyad; 20 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 21 22 proc mixed covtest; 23 class dyad; 24 model i_perform = i_motivate d_motivate d_cohesion / solution; 25 random intercept i_motivate / subject=dyad type=un solution; 26 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 5-8. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 27 28 29 proc mixed covtest; 30 class dyad; 31 model i_perform = i_motivate d_motivate_lo d_cohesion / solution; 32 random intercept i_motivate / subject=dyad type=un solution; 33 run; 3 The SAS System 13:31 Thursday, January 12, 2012 NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 9-12. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 34 35 proc mixed covtest; 36 class dyad; 37 model i_perform = i_motivate d_motivate_hi d_cohesion / solution; 38 random intercept i_motivate / subject=dyad type=un; 39 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 13-14. NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 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.12 seconds cpu time 0.10 seconds