I'm not really sure what you're trying to test here, but if you're
running a mixed ANOVA with one b/n Ss variable (i.e. Gender) and one w/
n Ss variable (i.e. Side), then the following data set structure
should be used:
ID Gender Left_Side Right_Side
1 1 23 22
2 2 45 22
3 1 16 15
.
.
.
N
If you have data that are missing at random, then you should probably
consider running a linear mixed model. In such a case you would need
to set up your data set such that ID repeats for each level of your
within-subjects variable:
ID Gender Side Y
1 1 1 23
1 1 2 22
2 2 1 45
2 2 2 22
3 1 1 16
3 1 2 15
.
.
.
N
HTH,
Ryan
You have two independent variables, but one is an independent measure
(Gender) while the other is a repeated measure (Side). In this case
you need to use a Mixed ANOVA. However, Side is only a repeated
measure if every participant was tested on both their right arm and
their left arm. If some people were tested on just the left arm and
others on just the right arm then you would need to run a two-way
independent ANOVA.
John
"ms" <silve...@gmail.com> wrote in message
news:80edcf59-3e3d-4b64...@c37g2000prb.googlegroups.com...