On Nov 16, 3:11 pm, ehsan sabaghian <
e.sabagh...@gmail.com> wrote:
> I want to compare 5 mean in one group in a period of time that I said. In a
> similar study with 3 time, they recorded 3 mean and standard deviation:
>
> Time Mean SD
> first 21.4 3
> 2nd 19.2 4.2
> 3rd 19.3 3.9
>
> Now I want to do the same study with 5 time. The minimum effect is nearly
> between 2 to 4.
If I follow, you have one group that will be measured 5 times, and you
want to have power to detect a mean change (drop) of at least 2 points
from time 1 to time 5, or at least to one of the time points after
time 1. Is this right?
What type of analysis do you intend to do? Repeated measures ANOVA?
Can the main question be boiled down to a paired t-test (e.g., time 1
vs. time 5)? If so, you could use Russ Lenth's sample size applet for
the paired t-test, available here:
http://www.cs.uiowa.edu/~rlenth/Power/
But you'll need an estimate of the SD of the change scores. To get
that, you need an estimate of the correlation between time points--
does that similar study report the correlations?
Compute the covariance from the correlation & the two standard
deviations:
COV(t1,t5) = r(t1,t5) * SD(t1) * SD(t5)
Then compute the variance of the change scores:
Var(change) = Var(t1) + Var(t5) - 2*COV(t1,t5)
And finally, take the square root of that to get the SD of the change
scores:
SD(change) = SQRT[Var(change)]
If you're not too confident in the estimate of the correlation, you
can try it with a range of plausible values. (This is often called a
"sensitivity analysis").
HTH.