home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / sasl / 5736 < prev    next >
Encoding:
Internet Message Format  |  1993-01-24  |  1.2 KB

  1. Path: sparky!uunet!dziuxsolim.rutgers.edu!gandalf.rutgers.edu!parilis
  2. From: parilis@gandalf.rutgers.edu (Gary Parilis)
  3. Newsgroups: bit.listserv.sas-l
  4. Subject: repeated measures manova in glm?
  5. Message-ID: <Jan.24.14.03.21.1993.13935@gandalf.rutgers.edu>
  6. Date: 24 Jan 93 19:03:22 GMT
  7. Organization: Rutgers Univ., New Brunswick, N.J.
  8. Lines: 28
  9.  
  10.  
  11. Anybody have any suggestions about how to put the following into a
  12. single multivariate procedure?  It is simply a time1/time2
  13. repeated measures design.  Each proc step below is tests the
  14. within subjects change on a particular dependent variable.  The "pr"
  15. and "di" prefixes refer to levels of the independent variable
  16. (goaltype).  The suffixes refer to the dependent variables.  The
  17. dependent variables are related, and somewhat correlated.
  18.  
  19. proc glm data=final;
  20.  model pr_intvl di_intvl = / nouni;
  21.  repeated goaltype 2;
  22.  
  23. proc glm data=final;
  24.  model pr_util di_util = / nouni;
  25.  repeated goaltype 2;
  26.  
  27. proc glm data=final;
  28.  model pr_effrt di_effrt = / nouni;
  29.  repeated goaltype 2;
  30.  
  31. proc glm data=final;
  32.  model pr_prsur di_prsur = / nouni;
  33.  repeated goaltype 2;
  34.  
  35. proc glm data=final;
  36.  model pr_slfef di_slfef = / nouni;
  37.  repeated goaltype 2;
  38.