送交者: xj 于 2005-8-20, 00:58:48:
回答: Thanks. iN THE EXAMPLE YOU GAVE, there are 由 cornbug 于 2005-8-20, 00:54:31:
for four measurements, each measured five times
make sure dependent variable organized in the right order.
depedent variable: y1-y20
measurements: 1111122222...
time: 1234512345...
proc glm;
class group;
model y1-y20=group/nouni;
repeated measure 4, time 5;
run;
and so forth.