/* Example of Repeated Measures Analysis MJ 31*/
options linesize=80 pagesize=50;
data repeat;
   infile 'mvrepeat.dat';
   input leaf1 leaf2 leaf3 leaf4 leaf5 block variety;
proc anova; class variety block;
   model leaf1 leaf2 leaf3 leaf4 leaf5 = block variety / ss1;
   repeated week 5 (1 2 3 4 5) contrast / printm printh printe printrv nou short summary;

