1 The SAS System 12:53 Wednesday, May 1, 1996 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.11 TS040 Licensed to UNIVERSITY OF WISCONSIN, Site 0002176032. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "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: AUTOEXEC processing beginning; file is /afs/.cs.wisc.edu/s/sas-6.11/alpha_osf20/sas611/autoexec.sas. NOTE: SAS initialization used: real time 18.23 seconds cpu time 1.18 seconds NOTE: AUTOEXEC processing completed. 1 /* Example of Repeated Measures Analysis MJ 31*/ 2 options linesize=80 pagesize=50; 3 data repeat; 4 infile 'mvrepeat.dat'; 5 input leaf1 leaf2 leaf3 leaf4 leaf5 block variety; NOTE: The infile 'mvrepeat.dat' is: File Name=/afs/cs.wisc.edu/p/stat/Data/MJ/mvrepeat.dat, Owner Name=yandell,Group Name=yandell, Access Permission=rw-r-----, File Size (bytes)=580 NOTE: 20 records were read from the infile 'mvrepeat.dat'. The minimum record length was 28. The maximum record length was 28. NOTE: The data set WORK.REPEAT has 20 observations and 7 variables. NOTE: DATA statement used: real time 4.45 seconds cpu time 0.46 seconds 6 proc anova; class variety block; 7 model leaf1 leaf2 leaf3 leaf4 leaf5 = block variety / ss1; 8 repeated week 5 (1 2 3 4 5) contrast / printm printh printe printrv nou short summary; 2 The SAS System 12:53 Wednesday, May 1, 1996 9 NOTE: The PROCEDURE ANOVA printed pages 1-15. NOTE: PROCEDURE ANOVA used: real time 18.93 seconds cpu time 1.13 seconds NOTE: The SAS System used: real time 44.03 seconds cpu time 3.06 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414