1 The SAS System 16:21 Thursday, March 29, 2018 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-696.18.7.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-696.18.7.el6.x86_64 #1 SMP Thu Dec 28 20:15:47 EST 2017 x86_64 Red Hat Enterprise Linux Server release 6.9 (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.12 seconds cpu time 0.03 seconds 1 options ps=54 ls=76; 2 3 data one; 4 infile 'repmeas1.txt'; 5 input curriculum student month y; 6 month1=month; 7 run; NOTE: The infile 'repmeas1.txt' is: Filename=/home/winner/public_html/data/repmeas1.txt, 2 The SAS System 16:21 Thursday, March 29, 2018 Owner Name=winner,Group Name=domain users, Access Permission=-rwxr--r--, Last Modified=29Mar2018:14:35:49, File Size (bytes)=2664 NOTE: 72 records were read from the infile 'repmeas1.txt'. The minimum record length was 36. The maximum record length was 36. NOTE: The data set WORK.ONE has 72 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 8 9 * proc print; 10 proc means; class curriculum; run; NOTE: There were 72 observations read from the data set WORK.ONE. NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used (Total process time): real time 0.03 seconds cpu time 0.04 seconds 11 12 proc mixed; 13 class curriculum student month1; 14 model y = curriculum month curriculum*month / solution; 15 random student(curriculum); 16 repeated month1 / subject=student(curriculum) type=ar(1) r rcorr 16 ! ; 17 lsmeans curriculum / pdiff; 18 run; NOTE: Convergence criteria met. NOTE: Estimated G matrix is not positive definite. NOTE: The PROCEDURE MIXED printed pages 2-5. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 19 20 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.21 seconds cpu time 0.09 seconds