Anova Repeated Measures

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Anova Repeated Measures

Marcioestat
Hi listers,

I am working on an anova with repeated measures...
I have a factor DIRECTION (8 levels) between subjects and another factor
HAND (2 levels) within subjects and for each hand I have the repeated
measures (two times). So, I would like to find out if there is an effect
of the hand and of the direction!
Did I set well the model as shown at the code!
I am not sure about my modeling, if it is correct, if so I got an
interaction of main*repetition*direction... So more work to be done...

GLM
  d_cond1_1 d_cond2_1 nd_cond1_2 nd_cond2_2 BY direction
  /WSFACTOR = main 2 Repeated repetition 2 Repeated
  /METHOD = SSTYPE(3)
  /PLOT = PROFILE(main*direction)
  /PRINT = DESCRIPTIVE
  /CRITERIA = ALPHA(.05)
  /WSDESIGN = main repetition main*repetition
  /DESIGN = direction .

Thanks in advance,

Ribeiro

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD
Reply | Threaded
Open this post in threaded view
|

Re: Anova Repeated Measures

Alexander J. Shackman-2
try this --

*** generic mixed-model glm *** .

GLM
  d_cond1_1 d_cond2_1 nd_cond1_2 nd_cond2_2 BY direction
  /WSFACTOR = hand 2 Polynomial cond 2 Polynomial
  /METHOD = SSTYPE(3)
  /POSTHOC = direction ( LSD )
  /EMMEANS = TABLES(OVERALL)
  /EMMEANS = TABLES(direction) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(hand) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(cond) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(direction*hand)
  /EMMEANS = TABLES(direction*cond)
  /EMMEANS = TABLES(hand*cond)
  /EMMEANS = TABLES(direction*hand*cond)
  /PRINT = DESCRIPTIVE ETASQ HOMOGENEITY
  /CRITERIA = ALPHA(.05)
  /WSDESIGN = hand cond hand*cond
  /DESIGN = direction .

*** mixed-model glm with follow-up tests (pooled error; no correction for
multiple comparisons) *** .

GLM
  d_cond1_1 d_cond2_1 nd_cond1_2 nd_cond2_2 BY direction
  /WSFACTOR = hand 2 Polynomial cond 2 Polynomial
  /METHOD = SSTYPE(3)
  /POSTHOC = direction ( LSD )
  /EMMEANS = TABLES(OVERALL)
  /EMMEANS = TABLES(direction) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(hand) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(cond) COMPARE ADJ(LSD)
  /EMMEANS = TABLES(direction*hand) COMPARE(direction)
  /EMMEANS = TABLES(direction*hand) COMPARE(hand)
  /EMMEANS = TABLES(direction*cond) COMPARE(direction)
  /EMMEANS = TABLES(direction*cond) COMPARE(cond)
  /EMMEANS = TABLES(hand*cond) COMPARE(hand)
  /EMMEANS = TABLES(hand*cond) COMPARE(cond)
  /EMMEANS = TABLES(direction*hand*cond) COMPARE(direction)
  /EMMEANS = TABLES(direction*hand*cond) COMPARE(hand)
  /EMMEANS = TABLES(direction*hand*cond) COMPARE(cond)
  /PRINT = DESCRIPTIVE ETASQ HOMOGENEITY
  /CRITERIA = ALPHA(.05)
  /WSDESIGN = hand cond hand*cond
  /DESIGN = direction .



On Fri, Apr 4, 2008 at 4:21 PM, Ribeiro <[hidden email]> wrote:

> Hi listers,
>
> I am working on an anova with repeated measures...
> I have a factor DIRECTION (8 levels) between subjects and another factor
> HAND (2 levels) within subjects and for each hand I have the repeated
> measures (two times). So, I would like to find out if there is an effect
> of the hand and of the direction!
> Did I set well the model as shown at the code!
> I am not sure about my modeling, if it is correct, if so I got an
> interaction of main*repetition*direction... So more work to be done...
>
> GLM
>  d_cond1_1 d_cond2_1 nd_cond1_2 nd_cond2_2 BY direction
>  /WSFACTOR = main 2 Repeated repetition 2 Repeated
>  /METHOD = SSTYPE(3)
>  /PLOT = PROFILE(main*direction)
>  /PRINT = DESCRIPTIVE
>  /CRITERIA = ALPHA(.05)
>  /WSDESIGN = main repetition main*repetition
>  /DESIGN = direction .
>
> Thanks in advance,
>
> Ribeiro
>
> =====================
> To manage your subscription to SPSSX-L, send a message to
> [hidden email] (not to SPSSX-L), with no body text except the
> command. To leave the list, send the command
> SIGNOFF SPSSX-L
> For a list of commands to manage subscriptions, send the command
> INFO REFCARD
>



--
Alexander J. Shackman
Laboratory for Affective Neuroscience
Waisman Laboratory for Brain Imaging & Behavior
University of Wisconsin-Madison
1202 West Johnson Street
Madison, Wisconsin 53706

Telephone: +1 (608) 358-5025
FAX: +1 (608) 265-2875
EMAIL: [hidden email]
http://psyphz.psych.wisc.edu/~shackman
Calendar {still under construction}:
http://www.google.com/calendar/embed?src=ajshackman%40gmail.com

=====================
To manage your subscription to SPSSX-L, send a message to
[hidden email] (not to SPSSX-L), with no body text except the
command. To leave the list, send the command
SIGNOFF SPSSX-L
For a list of commands to manage subscriptions, send the command
INFO REFCARD