home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!dziuxsolim.rutgers.edu!gandalf.rutgers.edu!parilis
- From: parilis@gandalf.rutgers.edu (Gary Parilis)
- Newsgroups: bit.listserv.sas-l
- Subject: repeated measures manova in glm?
- Message-ID: <Jan.24.14.03.21.1993.13935@gandalf.rutgers.edu>
- Date: 24 Jan 93 19:03:22 GMT
- Organization: Rutgers Univ., New Brunswick, N.J.
- Lines: 28
-
-
- Anybody have any suggestions about how to put the following into a
- single multivariate procedure? It is simply a time1/time2
- repeated measures design. Each proc step below is tests the
- within subjects change on a particular dependent variable. The "pr"
- and "di" prefixes refer to levels of the independent variable
- (goaltype). The suffixes refer to the dependent variables. The
- dependent variables are related, and somewhat correlated.
-
- proc glm data=final;
- model pr_intvl di_intvl = / nouni;
- repeated goaltype 2;
-
- proc glm data=final;
- model pr_util di_util = / nouni;
- repeated goaltype 2;
-
- proc glm data=final;
- model pr_effrt di_effrt = / nouni;
- repeated goaltype 2;
-
- proc glm data=final;
- model pr_prsur di_prsur = / nouni;
- repeated goaltype 2;
-
- proc glm data=final;
- model pr_slfef di_slfef = / nouni;
- repeated goaltype 2;
-