1 The SAS System 15:05 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.02 seconds cpu time 0.02 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_cohesion_c 90-96 d_motivate_c 98-104 8 d_motivate_clo 114-120 d_motivate_chi 106-112; 9 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 11 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds 2 The SAS System 15:05 Thursday, January 12, 2012 cpu time 0.00 seconds 10 11 proc mixed; 12 class dyad; 13 model i_perform = /solution ; 14 random intercept / subject=dyad; 15 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.02 seconds 16 17 proc mixed covtest; 18 class dyad; 19 model i_perform = i_motivate d_motivate_c d_cohesion_c 20 / solution; 21 random intercept / subject=dyad; 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.01 seconds 23 24 proc mixed covtest; 25 class dyad; 26 model i_perform = i_motivate d_motivate_c d_cohesion_c 27 i_motivate*d_motivate_c i_motivate*d_cohesion_c / solution; 28 random intercept / subject=dyad ; 29 run; 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.01 seconds 30 31 32 proc mixed covtest; 33 class dyad; 3 The SAS System 15:05 Thursday, January 12, 2012 34 model i_perform = i_motivate d_motivate_chi d_cohesion_c 35 i_motivate*d_motivate_chi i_motivate*d_cohesion_c / solution; 36 random intercept / subject=dyad ; 37 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 7-8. NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 38 39 40 proc mixed covtest; 41 class dyad; 42 model i_perform = i_motivate d_motivate_clo d_cohesion_c 43 i_motivate*d_motivate_clo i_motivate*d_cohesion_c / solution; 44 random intercept / subject=dyad ; 45 run; NOTE: Convergence criteria met. NOTE: The PROCEDURE MIXED printed pages 9-10. NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 46 /* 47 48 proc mixed covtest; 49 class dyad; 50 model i_perform = i_motivate d_motivate_lo d_cohesion / solution; 51 random intercept i_motivate / subject=dyad type=un solution; 52 run; 53 54 proc mixed covtest; 55 class dyad; 56 model i_perform = i_motivate d_motivate_hi d_cohesion / solution; 57 random intercept i_motivate / subject=dyad type=un; 58 run; 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.10 seconds